-- MySQL dump 10.13  Distrib 5.7.23-23, for Linux (x86_64)
--
-- Host: localhost    Database: assarbbq_naishautomation-db
-- ------------------------------------------------------
-- Server version	5.7.23-23

/*!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 utf8 */;
/*!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 */;
/*!50717 SELECT COUNT(*) INTO @rocksdb_has_p_s_session_variables FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'performance_schema' AND TABLE_NAME = 'session_variables' */;
/*!50717 SET @rocksdb_get_is_supported = IF (@rocksdb_has_p_s_session_variables, 'SELECT COUNT(*) INTO @rocksdb_is_supported FROM performance_schema.session_variables WHERE VARIABLE_NAME=\'rocksdb_bulk_load\'', 'SELECT 0') */;
/*!50717 PREPARE s FROM @rocksdb_get_is_supported */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;
/*!50717 SET @rocksdb_enable_bulk_load = IF (@rocksdb_is_supported, 'SET SESSION rocksdb_bulk_load = 1', 'SET @rocksdb_dummy_bulk_load = 0') */;
/*!50717 PREPARE s FROM @rocksdb_enable_bulk_load */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;

--
-- 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) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_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 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci 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 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB 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 */;
/*!40000 ALTER TABLE `wp_comments` 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) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci 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) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

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

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://demoweblinks.in/naishautomation','yes'),(2,'home','http://demoweblinks.in/naishautomation','yes'),(3,'blogname','Naish Automation','yes'),(4,'blogdescription','Automate Your Dreams','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','sonus90@outlook.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:187:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:10:\"faq/all/?$\";s:23:\"index.php?post_type=faq\";s:40:\"faq/all/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?post_type=faq&feed=$matches[1]\";s:35:\"faq/all/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?post_type=faq&feed=$matches[1]\";s:27:\"faq/all/page/([0-9]{1,})/?$\";s:41:\"index.php?post_type=faq&paged=$matches[1]\";s:16:\"portfolio/all/?$\";s:29:\"index.php?post_type=portfolio\";s:46:\"portfolio/all/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:41:\"portfolio/all/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:33:\"portfolio/all/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=portfolio&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"faq/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"faq/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"faq/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"faq/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"faq/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"faq/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:20:\"faq/([^/]+)/embed/?$\";s:36:\"index.php?faq=$matches[1]&embed=true\";s:24:\"faq/([^/]+)/trackback/?$\";s:30:\"index.php?faq=$matches[1]&tb=1\";s:44:\"faq/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?faq=$matches[1]&feed=$matches[2]\";s:39:\"faq/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?faq=$matches[1]&feed=$matches[2]\";s:32:\"faq/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?faq=$matches[1]&paged=$matches[2]\";s:39:\"faq/([^/]+)/comment-page-([0-9]{1,})/?$\";s:43:\"index.php?faq=$matches[1]&cpage=$matches[2]\";s:28:\"faq/([^/]+)(?:/([0-9]+))?/?$\";s:42:\"index.php?faq=$matches[1]&page=$matches[2]\";s:20:\"faq/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\"faq/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:50:\"faq/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"faq/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"faq/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\"faq/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:51:\"faq-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?faq-category=$matches[1]&feed=$matches[2]\";s:46:\"faq-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?faq-category=$matches[1]&feed=$matches[2]\";s:27:\"faq-category/(.+?)/embed/?$\";s:45:\"index.php?faq-category=$matches[1]&embed=true\";s:39:\"faq-category/(.+?)/page/?([0-9]{1,})/?$\";s:52:\"index.php?faq-category=$matches[1]&paged=$matches[2]\";s:21:\"faq-category/(.+?)/?$\";s:34:\"index.php?faq-category=$matches[1]\";s:36:\"products/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"products/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"products/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"products/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"products/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"products/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"products/([^/]+)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\";s:29:\"products/([^/]+)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:49:\"products/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:44:\"products/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:37:\"products/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:44:\"products/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:33:\"products/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:25:\"products/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"products/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"products/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"products/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"products/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"products/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:54:\"portfolio-cat/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-cat=$matches[1]&feed=$matches[2]\";s:49:\"portfolio-cat/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-cat=$matches[1]&feed=$matches[2]\";s:30:\"portfolio-cat/([^/]+)/embed/?$\";s:46:\"index.php?portfolio-cat=$matches[1]&embed=true\";s:42:\"portfolio-cat/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?portfolio-cat=$matches[1]&paged=$matches[2]\";s:24:\"portfolio-cat/([^/]+)/?$\";s:35:\"index.php?portfolio-cat=$matches[1]\";s:54:\"portfolio-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:49:\"portfolio-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:30:\"portfolio-tag/([^/]+)/embed/?$\";s:46:\"index.php?portfolio-tag=$matches[1]&embed=true\";s:42:\"portfolio-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?portfolio-tag=$matches[1]&paged=$matches[2]\";s:24:\"portfolio-tag/([^/]+)/?$\";s:35:\"index.php?portfolio-tag=$matches[1]\";s:38:\"mc4wp-form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"mc4wp-form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"mc4wp-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"mc4wp-form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"mc4wp-form/([^/]+)/embed/?$\";s:43:\"index.php?mc4wp-form=$matches[1]&embed=true\";s:31:\"mc4wp-form/([^/]+)/trackback/?$\";s:37:\"index.php?mc4wp-form=$matches[1]&tb=1\";s:39:\"mc4wp-form/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&paged=$matches[2]\";s:46:\"mc4wp-form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&cpage=$matches[2]\";s:35:\"mc4wp-form/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?mc4wp-form=$matches[1]&page=$matches[2]\";s:27:\"mc4wp-form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"mc4wp-form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"mc4wp-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"mc4wp-form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=74&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:7:{i:0;s:33:\"auxin-elements/auxin-elements.php\";i:1;s:35:\"auxin-pro-tools/auxin-pro-tools.php\";i:2;s:35:\"auxin-portfolio/auxin-portfolio.php\";i:3;s:36:\"contact-form-7/wp-contact-form-7.php\";i:4;s:23:\"elementor/elementor.php\";i:5;s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";i:6;s:21:\"wp-ulike/wp-ulike.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','naish-pro','yes'),(41,'stylesheet','naish-pro','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','51917','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','0','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','74','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','226','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','768','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1662546699','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','51917','yes'),(100,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:112:{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:8:\"edit_faq\";b:1;s:8:\"read_faq\";b:1;s:10:\"delete_faq\";b:1;s:9:\"edit_faqs\";b:1;s:16:\"edit_others_faqs\";b:1;s:12:\"publish_faqs\";b:1;s:17:\"read_private_faqs\";b:1;s:11:\"delete_faqs\";b:1;s:19:\"delete_private_faqs\";b:1;s:21:\"delete_published_faqs\";b:1;s:18:\"delete_others_faqs\";b:1;s:17:\"edit_private_faqs\";b:1;s:19:\"edit_published_faqs\";b:1;s:16:\"manage_faq_terms\";b:1;s:14:\"edit_faq_terms\";b:1;s:16:\"delete_faq_terms\";b:1;s:16:\"assign_faq_terms\";b:1;s:14:\"edit_portfolio\";b:1;s:14:\"read_portfolio\";b:1;s:16:\"delete_portfolio\";b:1;s:15:\"edit_portfolios\";b:1;s:22:\"edit_others_portfolios\";b:1;s:18:\"publish_portfolios\";b:1;s:23:\"read_private_portfolios\";b:1;s:17:\"delete_portfolios\";b:1;s:25:\"delete_private_portfolios\";b:1;s:27:\"delete_published_portfolios\";b:1;s:24:\"delete_others_portfolios\";b:1;s:23:\"edit_private_portfolios\";b:1;s:25:\"edit_published_portfolios\";b:1;s:22:\"manage_portfolio_terms\";b:1;s:20:\"edit_portfolio_terms\";b:1;s:22:\"delete_portfolio_terms\";b:1;s:22:\"assign_portfolio_terms\";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:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:85:{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:8:\"edit_faq\";b:1;s:8:\"read_faq\";b:1;s:10:\"delete_faq\";b:1;s:9:\"edit_faqs\";b:1;s:16:\"edit_others_faqs\";b:1;s:12:\"publish_faqs\";b:1;s:17:\"read_private_faqs\";b:1;s:11:\"delete_faqs\";b:1;s:19:\"delete_private_faqs\";b:1;s:21:\"delete_published_faqs\";b:1;s:18:\"delete_others_faqs\";b:1;s:17:\"edit_private_faqs\";b:1;s:19:\"edit_published_faqs\";b:1;s:16:\"manage_faq_terms\";b:1;s:14:\"edit_faq_terms\";b:1;s:16:\"delete_faq_terms\";b:1;s:16:\"assign_faq_terms\";b:1;s:14:\"edit_portfolio\";b:1;s:14:\"read_portfolio\";b:1;s:16:\"delete_portfolio\";b:1;s:15:\"edit_portfolios\";b:1;s:22:\"edit_others_portfolios\";b:1;s:18:\"publish_portfolios\";b:1;s:23:\"read_private_portfolios\";b:1;s:17:\"delete_portfolios\";b:1;s:25:\"delete_private_portfolios\";b:1;s:27:\"delete_published_portfolios\";b:1;s:24:\"delete_others_portfolios\";b:1;s:23:\"edit_private_portfolios\";b:1;s:25:\"edit_published_portfolios\";b:1;s:22:\"manage_portfolio_terms\";b:1;s:20:\"edit_portfolio_terms\";b:1;s:22:\"delete_portfolio_terms\";b:1;s:22:\"assign_portfolio_terms\";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: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;}}}','yes'),(101,'fresh_site','0','yes'),(102,'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;}','yes'),(103,'sidebars_widgets','a:13:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:40:\"auxin-global-primary-sidebar-widget-area\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:42:\"auxin-global-secondary-sidebar-widget-area\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:39:\"auxin-pages-primary-sidebar-widget-area\";a:0:{}s:41:\"auxin-pages-secondary-sidebar-widget-area\";a:0:{}s:38:\"auxin-blog-primary-sidebar-widget-area\";a:0:{}s:40:\"auxin-blog-secondary-sidebar-widget-area\";a:0:{}s:32:\"auxin-search-sidebar-widget-area\";a:0:{}s:31:\"auxin-subfooter-bar-widget-area\";a:0:{}s:33:\"auxin-footer1-sidebar-widget-area\";a:0:{}s:33:\"auxin-footer2-sidebar-widget-area\";a:0:{}s:33:\"auxin-footer3-sidebar-widget-area\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:9:{i:1652995900;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:1652999500;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1653028980;a:1:{s:29:\"mc4wp_refresh_mailchimp_lists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653042700;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:1653042713;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653042714;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:1653042755;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:1653129100;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(105,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(121,'theme_mods_twentytwentytwo','a:3:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1647845848;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}s:18:\"nav_menu_locations\";a:0:{}}','yes'),(124,'https_detection_errors','a:0:{}','yes'),(133,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:19:\"sonus90@outlook.com\";s:7:\"version\";s:5:\"5.9.3\";s:9:\"timestamp\";i:1649373478;}','no'),(141,'can_compress_scripts','0','no'),(156,'elementor_active_kit','75','yes'),(159,'recently_activated','a:0:{}','yes'),(160,'elementor_version','3.5.6','yes'),(161,'elementor_install_history','a:7:{s:5:\"3.0.5\";i:1600761236;s:6:\"3.0.13\";i:1605769098;s:6:\"3.0.14\";i:1607594310;s:6:\"3.0.15\";i:1608626980;s:5:\"3.1.4\";i:1618650138;s:5:\"3.4.4\";i:1632043017;s:5:\"3.4.8\";i:1637585927;}','yes'),(163,'_elementor_installed_time','1600761238','yes'),(164,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}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:13:{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:14:\"Online Service\";i:7;s:7:\"Product\";i:8;s:11:\"Real Estate\";i:9;s:18:\"Social Involvement\";i:10;s:14:\"Thank You Page\";i:11;s:6:\"Travel\";i:12;s:18:\"Under Construction\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:857:{i:0;a:16:{s:4:\"tmpl\";i:768;s:2:\"id\";i:10107;s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";i:1547851373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:206;s:11:\"trend_index\";i:207;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:16:{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:133:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:16:{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:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:16:{s:4:\"tmpl\";i:773;s:2:\"id\";i:10158;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";i:1547852227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:255;s:11:\"trend_index\";i:295;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:16:{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:125:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:16:{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:130:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:16:{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:130:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:16:{s:4:\"tmpl\";i:776;s:2:\"id\";i:10190;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";i:1547885703;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:214;s:11:\"trend_index\";i:151;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:16:{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:131:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:16:{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:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:16:{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:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:16:{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:120:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:16:{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:122:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:16:{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:120:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:16:{s:4:\"tmpl\";i:782;s:2:\"id\";i:10256;s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";i:1547888909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:458;s:11:\"trend_index\";i:597;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:16:{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:130:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:16:{s:4:\"tmpl\";i:783;s:2:\"id\";i:10267;s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";i:1547889047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:281;s:11:\"trend_index\";i:233;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:16:{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:127:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:16:{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:123:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:16:{s:4:\"tmpl\";i:787;s:2:\"id\";i:10307;s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";i:1547893266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:641;s:11:\"trend_index\";i:689;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:16:{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:136:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:16:{s:4:\"tmpl\";i:788;s:2:\"id\";i:10318;s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";i:1547893367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:327;s:11:\"trend_index\";i:326;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:16:{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:131:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:16:{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:132:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:16:{s:4:\"tmpl\";i:790;s:2:\"id\";i:10339;s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";i:1547893603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:390;s:11:\"trend_index\";i:393;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:16:{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:121:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:16:{s:4:\"tmpl\";i:791;s:2:\"id\";i:10352;s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";i:1547915335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:445;s:11:\"trend_index\";i:525;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:16:{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:133:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:16:{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:129:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:16:{s:4:\"tmpl\";i:793;s:2:\"id\";i:10372;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";i:1547915554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:638;s:11:\"trend_index\";i:636;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:16:{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:134:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:16:{s:4:\"tmpl\";i:794;s:2:\"id\";i:10382;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";i:1547916616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:242;s:11:\"trend_index\";i:258;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:16:{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:139:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:16:{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:144:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:16:{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:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:16:{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:123:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:16:{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:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:16:{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:134:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:16:{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:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:16:{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:141:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:16:{s:4:\"tmpl\";i:799;s:2:\"id\";i:10434;s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";i:1547961950;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:359;s:11:\"trend_index\";i:353;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:16:{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:128:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:16:{s:4:\"tmpl\";i:800;s:2:\"id\";i:10444;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";i:1547962029;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:385;s:11:\"trend_index\";i:298;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:16:{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:129:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:16:{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:123:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:16:{s:4:\"tmpl\";i:802;s:2:\"id\";i:10467;s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";i:1547962277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:722;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:16:{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:129:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:16:{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:121:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:16:{s:4:\"tmpl\";i:804;s:2:\"id\";i:10487;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";i:1547964527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:554;s:11:\"trend_index\";i:618;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:16:{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:124:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:16:{s:4:\"tmpl\";i:805;s:2:\"id\";i:10498;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";i:1547964616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:421;s:11:\"trend_index\";i:382;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:16:{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:130:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:16:{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:131:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:16:{s:4:\"tmpl\";i:807;s:2:\"id\";i:10519;s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";i:1547964801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:585;s:11:\"trend_index\";i:629;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:16:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:16:{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:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:16:{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:140:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:16:{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:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:16:{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:118:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:16:{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:139:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:16:{s:4:\"tmpl\";i:812;s:2:\"id\";i:10569;s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";i:1547967812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:529;s:11:\"trend_index\";i:485;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:16:{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:140:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:16:{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:133:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:16:{s:4:\"tmpl\";i:814;s:2:\"id\";i:10590;s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";i:1547967978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:466;s:11:\"trend_index\";i:356;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:16:{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:128:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:16:{s:4:\"tmpl\";i:815;s:2:\"id\";i:10600;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";i:1547968080;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:483;s:11:\"trend_index\";i:494;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:16:{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:129:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:16:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:16:{s:4:\"tmpl\";i:817;s:2:\"id\";i:10622;s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";i:1547969678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:543;s:11:\"trend_index\";i:456;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:16:{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:134:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:16:{s:4:\"tmpl\";i:818;s:2:\"id\";i:10633;s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";i:1547969858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:675;s:11:\"trend_index\";i:722;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:16:{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:133:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:16:{s:4:\"tmpl\";i:819;s:2:\"id\";i:10644;s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";i:1547970814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:484;s:11:\"trend_index\";i:440;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:16:{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:121:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:16:{s:4:\"tmpl\";i:820;s:2:\"id\";i:10654;s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";i:1547970917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:658;s:11:\"trend_index\";i:676;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:16:{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:123:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:16:{s:4:\"tmpl\";i:821;s:2:\"id\";i:10664;s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";i:1547973928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:552;s:11:\"trend_index\";i:384;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:16:{s:4:\"tmpl\";i:822;s:2:\"id\";i:10675;s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";i:1547974110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:519;s:11:\"trend_index\";i:477;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:16:{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:123:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:16:{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:137:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:16:{s:4:\"tmpl\";i:824;s:2:\"id\";i:9719;s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";i:1547976107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:398;s:11:\"trend_index\";i:282;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:16:{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:119:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:16:{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:128:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:16:{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:130:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:16:{s:4:\"tmpl\";i:827;s:2:\"id\";i:10137;s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";i:1547976342;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:570;s:11:\"trend_index\";i:589;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:16:{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:122:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:16:{s:4:\"tmpl\";i:828;s:2:\"id\";i:10244;s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";i:1547976402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:623;s:11:\"trend_index\";i:660;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:16:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:16:{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:124:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:16:{s:4:\"tmpl\";i:830;s:2:\"id\";i:10127;s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";i:1547984061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:700;s:11:\"trend_index\";i:738;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:16:{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:133:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:16:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:16:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:16:{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:125:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:16:{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:129:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:16:{s:4:\"tmpl\";i:835;s:2:\"id\";i:10776;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";i:1548047055;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:694;s:11:\"trend_index\";i:694;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:16:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:16:{s:4:\"tmpl\";i:836;s:2:\"id\";i:10785;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";i:1548047593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:468;s:11:\"trend_index\";i:442;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:16:{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:118:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:16:{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:139:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:16:{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:126:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:16:{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:131:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:16:{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:134:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:16:{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:122:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:16:{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:124:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:16:{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:131:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:16:{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:140:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:16:{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:125:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:16:{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:125:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:16:{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:120:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:16:{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:124:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:16:{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:131:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:16:{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:132:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:16:{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:124:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:16:{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:122:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:16:{s:4:\"tmpl\";i:854;s:2:\"id\";i:10794;s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";i:1548067619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:430;s:11:\"trend_index\";i:475;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:16:{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:124:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:16:{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:123:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:16:{s:4:\"tmpl\";i:1368;s:2:\"id\";i:23275;s:5:\"title\";s:44:\"Classic | Contact | Digital Marketing Agency\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-agency-small.jpg\";s:12:\"tmpl_created\";i:1647799000;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-contact-digital-marketing-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:16:{s:4:\"tmpl\";i:857;s:2:\"id\";i:10871;s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";i:1548074396;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:706;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:16:{s:4:\"tmpl\";i:858;s:2:\"id\";i:10936;s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";i:1548874587;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:478;s:11:\"trend_index\";i:572;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:16:{s:4:\"tmpl\";i:861;s:2:\"id\";i:10964;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";i:1550039106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:598;s:11:\"trend_index\";i:664;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:16:{s:4:\"tmpl\";i:862;s:2:\"id\";i:10992;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";i:1550072007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:668;s:11:\"trend_index\";i:668;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:16:{s:4:\"tmpl\";i:863;s:2:\"id\";i:11005;s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";i:1550073303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:680;s:11:\"trend_index\";i:615;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:16:{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:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:16:{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:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:16:{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:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:16:{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:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:16:{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:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:16:{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:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:16:{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:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:16:{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:120:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:16:{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:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:16:{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:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:16:{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:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:16:{s:4:\"tmpl\";i:719;s:2:\"id\";i:9611;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546965350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:605;s:11:\"trend_index\";i:603;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:16:{s:4:\"tmpl\";i:720;s:2:\"id\";i:9622;s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";i:1546965896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:607;s:11:\"trend_index\";i:460;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:16:{s:4:\"tmpl\";i:721;s:2:\"id\";i:9631;s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546968270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:661;s:11:\"trend_index\";i:705;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:16:{s:4:\"tmpl\";i:724;s:2:\"id\";i:9662;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";i:1547009087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:684;s:11:\"trend_index\";i:658;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:16:{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:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:16:{s:4:\"tmpl\";i:727;s:2:\"id\";i:9690;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";i:1547011716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:393;s:11:\"trend_index\";i:571;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:16:{s:4:\"tmpl\";i:728;s:2:\"id\";i:9699;s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";i:1547015827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:475;s:11:\"trend_index\";i:527;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:16:{s:4:\"tmpl\";i:730;s:2:\"id\";i:9571;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";i:1547726151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:622;s:11:\"trend_index\";i:538;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:16:{s:4:\"tmpl\";i:733;s:2:\"id\";i:9740;s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";i:1547822836;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:624;s:11:\"trend_index\";i:691;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:16:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/interior-design-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:16:{s:4:\"tmpl\";i:735;s:2:\"id\";i:9762;s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";i:1547824145;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:463;s:11:\"trend_index\";i:436;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:16:{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:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:16:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:55:\"Fly-In | Team Details Popup | 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:148:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:16:{s:4:\"tmpl\";i:736;s:2:\"id\";i:9772;s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";i:1547824279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:760;s:11:\"trend_index\";i:781;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:16:{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:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:16:{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:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:16:{s:4:\"tmpl\";i:738;s:2:\"id\";i:9793;s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";i:1547831151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:670;s:11:\"trend_index\";i:742;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:16:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:52:\"Full Screen | Menu Popup | 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:145:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:161;a:16:{s:4:\"tmpl\";i:742;s:2:\"id\";i:9836;s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";i:1547835635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:634;s:11:\"trend_index\";i:669;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:16:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:51:\"Classic | Discount Popup | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:16:{s:4:\"tmpl\";i:743;s:2:\"id\";i:9847;s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";i:1547836956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:751;s:11:\"trend_index\";i:838;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:16:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:50:\"Hello Bar | CTA Popup | 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:143:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:16:{s:4:\"tmpl\";i:744;s:2:\"id\";i:9858;s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";i:1547837100;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:769;s:11:\"trend_index\";i:684;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:16:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:45:\"Classic | Discount Popup | 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:138:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:16:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:51:\"Bottom Bar | Discount Popup | 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:144:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:16:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:38:\"Hello Bar | Menu Popup | 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:131:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:16:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:43:\"Full Screen | Booking Popup | 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:136:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:16:{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:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:16:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:40:\"Classic | Discount Popup | 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:133:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:16:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:40:\"Slide-In | Contact Popup | 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:133:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:16:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:34:\"Fly-In | Cta Popup | Dental Clinic\";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:127:\"https://library.elementor.com/popups/fly-in-cta-popup-dental-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:16:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:35:\"Classic | Cta Popup | 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:128:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:16:{s:4:\"tmpl\";i:752;s:2:\"id\";i:9944;s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";i:1547841939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:757;s:11:\"trend_index\";i:700;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:16:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:46:\"Bottom Bar | Contact Popup | 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:139:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:16:{s:4:\"tmpl\";i:753;s:2:\"id\";i:9955;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";i:1547842065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:551;s:11:\"trend_index\";i:627;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:16:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:38:\"Fly-In | Contact Popup | 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:131:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:16:{s:4:\"tmpl\";i:754;s:2:\"id\";i:9965;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";i:1547842174;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:588;s:11:\"trend_index\";i:591;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:16:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:37:\"Classic |  Login Popup | 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:129:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:181;a:16:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:42:\"Full Screen | Login Popup | 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:135:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:16:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:34:\"Classic | Login Popup | 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:127:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:16:{s:4:\"tmpl\";i:757;s:2:\"id\";i:9995;s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";i:1547844802;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:772;s:11:\"trend_index\";i:817;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:16:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:37:\"Classic | Login Popup | 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:130:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:16:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:46:\"Classic |  Login Popup | 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:138:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:16:{s:4:\"tmpl\";i:759;s:2:\"id\";i:10016;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";i:1547845062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:792;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:16:{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:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:16:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:42:\"Fly-In | Contact Popup | 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:135:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:16:{s:4:\"tmpl\";i:760;s:2:\"id\";i:10026;s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";i:1547845205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:616;s:11:\"trend_index\";i:587;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:16:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:42:\"Fly-In | Cta Popup | 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:135:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:16:{s:4:\"tmpl\";i:761;s:2:\"id\";i:10036;s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";i:1547845409;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:614;s:11:\"trend_index\";i:717;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:16:{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:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:16:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:43:\"Full Screen | Contact Popup | 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:136:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:16:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:45:\"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:137:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:16:{s:4:\"tmpl\";i:763;s:2:\"id\";i:10057;s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";i:1547847938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:764;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:16:{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:131:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:16:{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:124:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:16:{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:133:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:16:{s:4:\"tmpl\";i:766;s:2:\"id\";i:10087;s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";i:1547848301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:644;s:11:\"trend_index\";i:632;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:16:{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:121:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:16:{s:4:\"tmpl\";i:767;s:2:\"id\";i:10097;s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";i:1547848411;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:689;s:11:\"trend_index\";i:758;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:16:{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:136:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:16:{s:4:\"tmpl\";i:831;s:2:\"id\";i:9816;s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";i:1547991876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:720;s:11:\"trend_index\";i:823;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:16:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:16:{s:4:\"tmpl\";i:718;s:2:\"id\";i:9602;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1546964559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:600;s:11:\"trend_index\";i:604;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:16:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photographer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"project\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:208;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:16:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture &#8211; Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:210;a:16:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:211;a:16:{s:4:\"tmpl\";i:842;s:2:\"id\";i:10277;s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";i:1548055999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:729;s:11:\"trend_index\";i:802;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:16:{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:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:16:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:215;a:16:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/law-firm-services-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:216;a:16:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:217;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:16:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:219;a:16:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photographer-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Gallery\",\"Photography\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:16:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:221;a:16:{s:4:\"tmpl\";i:748;s:2:\"id\";i:9903;s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";i:1547838896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:765;s:11:\"trend_index\";i:840;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:16:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:224;a:16:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/architecture-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"creative portfolio\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:225;a:16:{s:4:\"tmpl\";i:810;s:2:\"id\";i:10549;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";i:1547967595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:713;s:11:\"trend_index\";i:666;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:16:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:228;a:16:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:229;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:16:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:231;a:16:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/3d-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"creative portfolio\",\"Design\",\"Designer\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:16:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner &#8211; Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:234;a:16:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/business-consulting-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:16:{s:4:\"tmpl\";i:834;s:2:\"id\";i:10529;s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";i:1548046309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:474;s:11:\"trend_index\";i:398;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:16:{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:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:16:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:238;a:16:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/conference-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:37:\"[\"Conference\",\"Contact\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:16:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:240;a:16:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/construction-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:16:{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:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:242;a:16:{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:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:16:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:244;a:16:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/contact-plants-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:245;a:16:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:246;a:16:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:16:{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:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:16:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:249;a:16:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dental-care-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:16:{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:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:251;a:16:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:252;a:16:{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:122:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"medical\",\"Online\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:16:{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:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:254;a:16:{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:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:16:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/time-management-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:256;a:16:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/exhibition-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"creative portfolio\",\"Exhibition\",\"Gallery\",\"portfolio\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:16:{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:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:16:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:259;a:16:{s:4:\"tmpl\";i:797;s:2:\"id\";i:10413;s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";i:1547961774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:752;s:11:\"trend_index\";i:813;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:16:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:16:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/hotel-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Contact\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:16:{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:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:263;a:16:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:264;a:16:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/insurance-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:16:{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:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:266;a:16:{s:4:\"tmpl\";i:779;s:2:\"id\";i:10223;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";i:1547887343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:497;s:11:\"trend_index\";i:503;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:16:{s:4:\"tmpl\";i:811;s:2:\"id\";i:10559;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";i:1547967711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:714;s:11:\"trend_index\";i:729;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:16:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:16:{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:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:270;a:16:{s:4:\"tmpl\";i:846;s:2:\"id\";i:10403;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";i:1548056371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:627;s:11:\"trend_index\";i:659;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:16:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:16:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/interior-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";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:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:16:{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:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:274;a:16:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:16:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/online-training-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:16:{s:4:\"tmpl\";i:749;s:2:\"id\";i:9913;s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";i:1547841430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:542;s:11:\"trend_index\";i:417;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:16:{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:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:278;a:16:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/car-wash-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:16:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/packing-moving-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"moving\",\"Storge\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:16:{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:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:16:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:16:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/restaurant-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:46:\"[\"Contact\",\"Food\",\"form\",\"Google Maps\",\"Info\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:16:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:284;a:16:{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:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:285;a:16:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:16:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/spa-beauty-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:287;a:16:{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:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:288;a:16:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:16:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/travel-agency-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:16:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:291;a:16:{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:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:292;a:16:{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:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:293;a:16:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:16:{s:4:\"tmpl\";i:717;s:2:\"id\";i:9592;s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";i:1546963720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:663;s:11:\"trend_index\";i:807;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:16:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:16:{s:4:\"tmpl\";i:778;s:2:\"id\";i:10210;s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";i:1547886103;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:784;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:16:{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:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:298;a:16:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:16:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:16:{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:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:16:{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:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:302;a:16:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:16:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:16:{s:4:\"tmpl\";i:762;s:2:\"id\";i:10047;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";i:1547847757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:522;s:11:\"trend_index\";i:513;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:16:{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:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:306;a:16:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:16:{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:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:16:{s:4:\"tmpl\";i:746;s:2:\"id\";i:9879;s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";i:1547838416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:676;s:11:\"trend_index\";i:761;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:16:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:310;a:16:{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:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:16:{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:115:\"https://library.elementor.com/birthday-party-invitation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";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:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:16:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:16:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:314;a:16:{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:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:16:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:16:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:16:{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:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:16:{s:4:\"tmpl\";i:843;s:2:\"id\";i:10297;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";i:1548056099;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:590;s:11:\"trend_index\";i:607;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:16:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:16:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:16:{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:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:16:{s:4:\"tmpl\";i:847;s:2:\"id\";i:10393;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";i:1548056682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:678;s:11:\"trend_index\";i:837;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:16:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:16:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:16:{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:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:16:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:16:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:16:{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:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:16:{s:4:\"tmpl\";i:813;s:2:\"id\";i:10579;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";i:1547967887;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:712;s:11:\"trend_index\";i:782;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:16:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:16:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:16:{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:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:16:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:16:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:16:{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:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:16:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:16:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:16:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:16:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:16:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:16:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:16:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:16:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:16:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:16:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:16:{s:4:\"tmpl\";i:833;s:2:\"id\";i:10180;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";i:1548045309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:686;s:11:\"trend_index\";i:788;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:16:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:348;a:16:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:16:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:16:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:16:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:16:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:16:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:16:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:16:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:16:{s:4:\"tmpl\";i:825;s:2:\"id\";i:9731;s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";i:1547976166;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:635;s:11:\"trend_index\";i:648;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:16:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:16:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:16:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:16:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:361;a:16:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:16:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:16:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:16:{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:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:16:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:16:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:16:{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:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:16:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:16:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:16:{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:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:371;a:16:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:16:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:373;a:16:{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:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:374;a:16:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:16:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:16:{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:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:16:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:16:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:16:{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:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:380;a:16:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:16:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:16:{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:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:383;a:16:{s:4:\"tmpl\";i:758;s:2:\"id\";i:10005;s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";i:1547844909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:755;s:11:\"trend_index\";i:760;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:16:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:16:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:16:{s:4:\"tmpl\";i:798;s:2:\"id\";i:10424;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";i:1547961866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:677;s:11:\"trend_index\";i:753;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:16:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:16:{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:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:16:{s:4:\"tmpl\";i:755;s:2:\"id\";i:9975;s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";i:1547842284;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:774;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:16:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:16:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:16:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:16:{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:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:394;a:16:{s:4:\"tmpl\";i:764;s:2:\"id\";i:10067;s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";i:1547848075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:582;s:11:\"trend_index\";i:619;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:16:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:16:{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:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:397;a:16:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:16:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic &#8211; Health &#038; 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:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:16:{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:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:16:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:16:{s:4:\"tmpl\";i:789;s:2:\"id\";i:10329;s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";i:1547893478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:781;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:16:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:16:{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:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:404;a:16:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:16:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:406;a:16:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:407;a:16:{s:4:\"tmpl\";i:723;s:2:\"id\";i:9650;s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";i:1547007598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:771;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:16:{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:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:409;a:16:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:16:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:16:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:16:{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:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:413;a:16:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:16:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:16:{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:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:16:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:16:{s:4:\"tmpl\";i:840;s:2:\"id\";i:10200;s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";i:1548055635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:719;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:16:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:16:{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:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:420;a:16:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:16:{s:4:\"tmpl\";i:832;s:2:\"id\";i:10287;s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";i:1547994301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:602;s:11:\"trend_index\";i:439;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:16:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:16:{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:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:424;a:16:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:16:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:16:{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:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:427;a:16:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:16:{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:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:16:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:16:{s:4:\"tmpl\";i:747;s:2:\"id\";i:9889;s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";i:1547838722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:743;s:11:\"trend_index\";i:713;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:16:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:16:{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:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:16:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:434;a:16:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:16:{s:4:\"tmpl\";i:765;s:2:\"id\";i:10077;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";i:1547848197;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:540;s:11:\"trend_index\";i:574;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:16:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:16:{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:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:16:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:16:{s:4:\"tmpl\";i:844;s:2:\"id\";i:10362;s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";i:1548056253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:587;s:11:\"trend_index\";i:560;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:16:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:16:{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:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:16:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:16:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:16:{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:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:16:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:16:{s:4:\"tmpl\";i:849;s:2:\"id\";i:10454;s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";i:1548056896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:776;s:11:\"trend_index\";i:804;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:16:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:448;a:16:{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:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:449;a:16:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:16:{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:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:451;a:16:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:16:{s:4:\"tmpl\";i:739;s:2:\"id\";i:9803;s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";i:1547831298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:701;s:11:\"trend_index\";i:808;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:16:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:16:{s:4:\"tmpl\";i:816;s:2:\"id\";i:10611;s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";i:1547968868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:779;s:11:\"trend_index\";i:792;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:16:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:16:{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:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:16:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:16:{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:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:16:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:16:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:461;a:16:{s:4:\"tmpl\";i:806;s:2:\"id\";i:10508;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";i:1547964711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:711;s:11:\"trend_index\";i:793;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:16:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:463;a:16:{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:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:464;a:16:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:16:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:16:{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:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:467;a:16:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:16:{s:4:\"tmpl\";i:751;s:2:\"id\";i:9934;s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";i:1547841787;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:681;s:11:\"trend_index\";i:752;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:16:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:16:{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:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:16:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:16:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:473;a:16:{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:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:474;a:16:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:16:{s:4:\"tmpl\";i:729;s:2:\"id\";i:9709;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";i:1547023834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:728;s:11:\"trend_index\";i:728;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:16:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:16:{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:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:16:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:16:{s:4:\"tmpl\";i:725;s:2:\"id\";i:9671;s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1547010259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:639;s:11:\"trend_index\";i:598;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:16:{s:4:\"tmpl\";i:838;s:2:\"id\";i:10234;s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";i:1548055049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:746;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:481;a:16:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:16:{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:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:16:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:16:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:16:{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:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:486;a:16:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:16:{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:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:488;a:16:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:16:{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:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:490;a:16:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:16:{s:4:\"tmpl\";i:745;s:2:\"id\";i:9869;s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";i:1547837269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:766;s:11:\"trend_index\";i:820;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:16:{s:4:\"tmpl\";i:850;s:2:\"id\";i:10539;s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";i:1548056994;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:726;s:11:\"trend_index\";i:810;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:16:{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:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:494;a:16:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:16:{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:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:496;a:16:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:16:{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:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:498;a:16:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:16:{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:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:500;a:16:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:501;a:16:{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:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:502;a:16:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:16:{s:4:\"tmpl\";i:839;s:2:\"id\";i:10147;s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";i:1548055522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:775;s:11:\"trend_index\";i:824;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:16:{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:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:16:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:16:{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:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:16:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:16:{s:4:\"tmpl\";i:750;s:2:\"id\";i:9923;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";i:1547841537;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:699;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:16:{s:4:\"tmpl\";i:852;s:2:\"id\";i:10117;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";i:1548066998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:727;s:11:\"trend_index\";i:662;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:16:{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:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:16:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:16:{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:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:16:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:514;a:16:{s:4:\"tmpl\";i:741;s:2:\"id\";i:9826;s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";i:1547835513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:745;s:11:\"trend_index\";i:831;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:515;a:16:{s:4:\"tmpl\";i:848;s:2:\"id\";i:10478;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";i:1548056829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:595;s:11:\"trend_index\";i:559;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:16:{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:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:16:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:16:{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:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:16:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:16:{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:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:16:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:16:{s:4:\"tmpl\";i:823;s:2:\"id\";i:10685;s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";i:1547974729;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:721;s:11:\"trend_index\";i:814;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:523;a:16:{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:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:16:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:525;a:16:{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:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:16:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:527;a:16:{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:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:16:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:529;a:16:{s:4:\"tmpl\";i:756;s:2:\"id\";i:9985;s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";i:1547844661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:758;s:11:\"trend_index\";i:815;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:16:{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:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:16:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:16:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:16:{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:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:16:{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:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:16:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:16:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:16:{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:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:538;a:16:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:539;a:16:{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:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:540;a:16:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:16:{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:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:542;a:16:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:16:{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:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:544;a:16:{s:4:\"tmpl\";i:714;s:2:\"id\";i:9559;s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";i:1546946547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:617;s:11:\"trend_index\";i:839;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:16:{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:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:16:{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:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:547;a:16:{s:4:\"tmpl\";i:734;s:2:\"id\";i:9752;s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";i:1547823982;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:740;s:11:\"trend_index\";i:801;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:16:{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:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:549;a:16:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:16:{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:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:16:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:16:{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:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:16:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:16:{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:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:16:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:16:{s:4:\"tmpl\";i:774;s:2:\"id\";i:10169;s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";i:1547852334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:546;s:11:\"trend_index\";i:701;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:16:{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:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:16:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:16:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:16:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:16:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:16:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:16:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:16:{s:4:\"tmpl\";i:726;s:2:\"id\";i:9680;s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";i:1547010967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:725;s:11:\"trend_index\";i:725;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:16:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:16:{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:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:16:{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:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:16:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:16:{s:4:\"tmpl\";i:737;s:2:\"id\";i:9783;s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";i:1547831059;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:534;s:11:\"trend_index\";i:415;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:16:{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:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:16:{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:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:16:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:16:{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:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:16:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:16:{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:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:576;a:16:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:16:{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:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:578;a:16:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:16:{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:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:580;a:16:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:16:{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:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:582;a:16:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:16:{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:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:584;a:16:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:16:{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:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:586;a:16:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:16:{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:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:588;a:16:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:16:{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:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:590;a:16:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:16:{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:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:592;a:16:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:16:{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:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:594;a:16:{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:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:595;a:16:{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:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:596;a:16:{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:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:597;a:16:{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:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:598;a:16:{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:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:599;a:16:{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:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:600;a:16:{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:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:601;a:16:{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:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:602;a:16:{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:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:603;a:16:{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:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:604;a:16:{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:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:605;a:16:{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:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:606;a:16:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:16:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:16:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:16:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:16:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:16:{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:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:16:{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:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:16:{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:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:16:{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:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:16:{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:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:16:{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:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:16:{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:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:16:{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:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:16:{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:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:16:{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:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:621;a:16:{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:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:16:{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:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:623;a:16:{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:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:624;a:16:{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:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:16:{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:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:16:{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:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:16:{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:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:16:{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:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:16:{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:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:16:{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:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:16:{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:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:16:{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:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:16:{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:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:16:{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:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:16:{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:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:16:{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:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:16:{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:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:16:{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:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:16:{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:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:16:{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:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:16:{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:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:16:{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:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:16:{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:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:16:{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:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:16:{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:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:16:{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:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:16:{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:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:648;a:16:{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:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:16:{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:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:650;a:16:{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:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:16:{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:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:16:{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:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:653;a:16:{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:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:16:{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:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:655;a:16:{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:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:16:{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:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:657;a:16:{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:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:658;a:16:{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:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:16:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:16:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"interior design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:16:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:16:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:16:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:16:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:16:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:16:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:16:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:16:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:16:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:16:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:16:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:16:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:16:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:16:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:16:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:16:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:16:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:16:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:16:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:16:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:16:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:16:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:16:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:684;a:16:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:16:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:16:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:16:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:16:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:16:{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:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:16:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:691;a:16:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:16:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:16:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:16:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:16:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:16:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:16:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:16:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:16:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Footer\",\"portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:16:{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:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:16:{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: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:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Header\",\"portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:16:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:16:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:16:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:16:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:710;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:16:{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:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:720;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:721;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:722;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:16:{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:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:727;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:728;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:729;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:730;a:16:{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:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:731;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:732;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:733;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:734;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:735;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:736;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:16:{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:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:16:{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:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:16:{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:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:16:{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:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:16:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:16:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:16:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:16:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:16:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:16:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:16:{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:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:749;a:16:{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:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:750;a:16:{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:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:16:{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:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:16:{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:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:16:{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:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:754;a:16:{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:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:16:{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:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:756;a:16:{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:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:16:{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:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:16:{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:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:16:{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:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:16:{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:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:16:{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:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:16:{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:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:16:{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:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:16:{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:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:765;a:16:{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:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:766;a:16:{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:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:16:{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:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:768;a:16:{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:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:769;a:16:{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:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:770;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:775;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:776;a:16:{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:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:777;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:779;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:780;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:781;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:782;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:783;a:16:{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:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:16:{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:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:785;a:16:{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:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:786;a:16:{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:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:787;a:16:{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:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:788;a:16:{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:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:16:{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:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:16:{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:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:791;a:16:{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:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:16:{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:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:793;a:16:{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:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:16:{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:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:795;a:16:{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:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:796;a:16:{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:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:16:{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:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:798;a:16:{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:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:16:{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:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:16:{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:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:16:{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:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:802;a:16:{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:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:803;a:16:{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:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:16:{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:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:805;a:16:{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:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:16:{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:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:807;a:16:{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:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:808;a:16:{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:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:16:{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:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:16:{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:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:811;a:16:{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:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:16:{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:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:813;a:16:{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:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:814;a:16:{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:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:815;a:16:{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:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:816;a:16:{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:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:817;a:16:{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:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:16:{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:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:819;a:16:{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:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:820;a:16:{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:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:821;a:16:{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:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:822;a:16:{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:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:823;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:824;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:825;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:826;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:827;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:828;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:829;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:830;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:831;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:832;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:833;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:834;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:835;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:836;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:837;a:16:{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:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:838;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:839;a:16:{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:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:840;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:841;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:842;a:16:{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:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:843;a:16:{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:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:844;a:16:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:845;a:16:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:846;a:16:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:847;a:16:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:848;a:16:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:849;a:16:{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:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:850;a:16:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:851;a:16:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:852;a:16:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:853;a:16:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:854;a:16:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:855;a:16:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:856;a:16:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(165,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:54:\"6 Top Ecommerce Security Threats and Solutions of 2022\";s:7:\"excerpt\";s:267:\"According to recent studies, 32% of direct and organic traffic to ecommerce sites comes from Invalid Traffic — bots, malicious users, or suspicious users. In this article, we will dive deeper into some of these threats and offer the best solutions to address them.\";s:7:\"created\";i:1647217020;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:144:\"https://elementor.com/blog/top-ecommerce-security-threats-and-solutions/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:36:\"4 Women Making Moves in Web Creation\";s:7:\"excerpt\";s:173:\"Today is International Women’s Day, and what better way to celebrate girl power than with some inspiring stories from women web creators in our community across the globe.\";s:7:\"created\";i:1646738701;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:134:\"https://elementor.com/blog/women-making-moves-in-web-creation/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:75:\"The Opportunities and Challenges of Being a Female Web Entrepreneur in 2022\";s:7:\"excerpt\";s:305:\"While the web creates more equal opportunities, female founders secured only 2% of venture capital in the U.S. in 2021. Miriam Schwab, Co-founder and CEO of Strattic, shares her personal story and challenges as a female tech entrepreneur and why she firmly believes the future is bright for women in tech.\";s:7:\"created\";i:1646732431;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:149:\"https://elementor.com/blog/challenges-opportunities-for-female-entrepreneurs/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:35:\"The Hidden Costs of Website Hosting\";s:7:\"excerpt\";s:350:\"When you look at web hosting costs on a hosting provider\'s site, you\'ll typically see one single number for each plan. That\'s why it\'s easy to think that one price is all you\'ll ever pay. But Is that really the case? In this post, we\'re going to dig into web hosting costs in detail, including those hidden costs that you\'ll want to pay attention to.\";s:7:\"created\";i:1646652423;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:120:\"https://elementor.com/blog/hidden-hosting-costs/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:35:\"How To Create a Web Design Workflow\";s:7:\"excerpt\";s:204:\"Having a solid workflow can greatly improve your productivity and, in turn, your profit margins and client satisfaction. In this guide, we’ll break down the key phases and steps your workflow will need.\";s:7:\"created\";i:1646548620;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:119:\"https://elementor.com/blog/web-design-workflow/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(170,'finished_updating_comment_type','1','yes'),(172,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1652993652;s:7:\"checked\";a:4:{s:9:\"naish-pro\";s:5:\"5.7.3\";s:12:\"twentytwenty\";s:3:\"1.9\";s:15:\"twentytwentyone\";s:3:\"1.5\";s:15:\"twentytwentytwo\";s:3:\"1.1\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.5.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.1.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(173,'current_theme','Naish Pro','yes'),(174,'theme_mods_naish-pro','a:36:{i:0;b:0;s:20:\"last_checked_version\";s:5:\"5.7.3\";s:18:\"custom_css_post_id\";i:54;s:25:\"are_pro_options_inherited\";i:1;s:12:\"initial_date\";s:19:\"2021-03-15 09:21:25\";s:15:\"initial_version\";s:5:\"5.5.8\";s:18:\"nav_menu_locations\";a:1:{s:14:\"header-primary\";i:10;}s:12:\"font_subsets\";s:0:\"\";s:9:\"font_urls\";a:0:{}s:17:\"custom_css_string\";s:7079:\"/* header-logo-width \n=========================*/\n.aux-logo-header .aux-logo-anchor{ max-width:80px; }\n/* header-logo-max-height-type \n=========================*/\n.aux-logo-header .aux-logo-anchor > img { max-height:85px; }\n/* site-frame-background-color \n=========================*/\n@media screen and (min-width: 700px) { .aux-framed .aux-side-frames, body.aux-framed:after, .aux-framed .aux-side-frames:before, .aux-framed .aux-side-frames:after {background-color:#111111;}}\n/* sticky-header-color \n=========================*/\n.aux-elementor-header.aux-sticky .elementor-section-wrap > .elementor-section { background-color:#FFFFFF !important; }\n/* site-header-container-scaled-height \n=========================*/\n.aux-top-sticky .site-header-section.aux-sticky .aux-fill .aux-menu-depth-0 > .aux-item-content, .aux-top-sticky .site-header-section.aux-sticky .aux-header-elements,.aux-elementor-header.aux-sticky .elementor-section-wrap > .elementor-section > .elementor-container { min-height:80px; }\n/* site-header-container-height \n=========================*/\n.site-header-section .aux-header-elements:not(.aux-vertical-menu-elements), .site-header-section .aux-fill .aux-menu-depth-0 > .aux-item-content { height:85px; }\n/* site-transparent-header-bgcolor \n=========================*/\n.site-header-section { background-color:#FFFFFF; }\n/* site-vertical-menu-background-color \n=========================*/\n.aux-vertical-menu-side { background-color:#FFF; }\n/* site-header-navigation-item-height \n=========================*/\n.site-header-section .aux-middle .aux-menu-depth-0 > .aux-item-content { height:60px; }\n/* site-mobile-header-toggle-button-color \n=========================*/\n.site-header-section .aux-header .aux-burger:before, .site-header-section .aux-header .aux-burger:after, .site-header-section .aux-header .aux-burger .mid-line { border-color:#3d3d3d; }\n/* site-menu-full-screen-background-color \n=========================*/\n#fs-menu-search:before { background-color:rgba(255, 255, 255, 0.95); }\n/* site-top-header-background-color \n=========================*/\n#top-header {background-color:#FFFFFF;}\n/* blog-post-like-icon-size \n=========================*/\n.single-post .wp_ulike_general_class .wp_ulike_btn:before { font-size:10px; }\n/* blog-post-share-button-icon-size \n=========================*/\n.single-post .aux-single-post-share span::before { font-size:10px; }\n/* post-title-bar-overlay-pattern-opacity \n=========================*/\n.single-post .aux-overlay-bg-hash::before { opacity:0.15; }\n/* page-title-bar-overlay-pattern-opacity \n=========================*/\n.page .aux-overlay-bg-hash::before { opacity:0.5; }\n/* subfooter-bar-layout-bg-color \n=========================*/\n.aux-subfooter-bar { background-color:#fafafa; }\n/* subfooter-bar-top-border-color \n=========================*/\n.aux-subfooter-bar { border-top:1px solid #EAEAEA; }\n/* subfooter-layout-bg-image-position \n=========================*/\n.aux-subfooter {background-position:center center;}\n/* subfooter-layout-bg-image-size \n=========================*/\n.aux-subfooter {background-size:cover;}\n/* subfooter-layout-bg-image-repeat \n=========================*/\n.aux-subfooter {background-repeat:no-repeat;}\n/* subfooter-top-border-color \n=========================*/\n.aux-subfooter { border-top:1px solid #EAEAEA; }\n/* site-footer-bg-color \n=========================*/\n.aux-site-footer {background-color:#1A1A1A;}\n/* footer-top-border-color \n=========================*/\n.aux-site-footer {border-top:1px solid #EAEAEA;}\n/* footer-top-border-width \n=========================*/\n.aux-site-footer { border-top-width:1px; }\n/* site-secondary-logo-max-height \n=========================*/\n.aux-logo-footer .aux-logo-anchor img { max-height:50px; }\n/* portfolio-single-share-button-icon-size \n=========================*/\n.single-portfolio .aux-single-portfolio-share span::before { font-size:10px; }\n/* portfolio-single-like-icon-size \n=========================*/\n.single-portfolio .wp_ulike_general_class button::before { font-size:10px; }\n/* portfolio-title-bar-overlay-pattern-opacity \n=========================*/\n.single-portfolio .aux-overlay-bg-hash::before { opacity:0.5; }\n/* portfolio-classic-entry-box-background-color \n=========================*/\n.post-type-archive-portfolio .aux-entry-boxed .entry-main { background-color:#FFFFFF; }\n/* portfolio-classic-entry-box-border-color \n=========================*/\n.post-type-archive-portfolio .aux-entry-boxed .entry-main { border-color:#EAEAEA !important; }\n/* portfolio-land-side-background-color \n=========================*/\n.post-type-archive-portfolio .aux-item-land .aux-land-side { background-color:#FFFFFF; }\n/* portfolio-land-side-border-color \n=========================*/\n.post-type-archive-portfolio .aux-item-land .aux-land-side { border-color:#EAEAEA !important; }\n/* body-typography \n=========================*/\nbody{ font-family:\'Mukta\'; } \n/* general-heading-h1 \n=========================*/\nbody h1, body .aux-h1{ font-family:\'Heebo\'; } \n/* general-heading-h2 \n=========================*/\nbody h2, body .aux-h2{ font-family:\'Heebo\'; } \n/* general-heading-h3 \n=========================*/\nbody h3, body .aux-h3{ font-family:\'Heebo\'; } \n/* general-heading-h4 \n=========================*/\nbody h4, body .aux-h4{ font-family:\'Heebo\'; } \n/* general-heading-h5 \n=========================*/\nbody h5, body .aux-h5{ font-family:\'Mukta\'; } \n/* single-portfolio-overview-content-typography \n=========================*/\n.aux-single .type-portfolio .entry-side-overview{ color:var(--e-global-color-primary); font-size:16px; } \n@media(max-width: 768px){ .aux-single .type-portfolio .entry-side-overview{ font-size:14px; }  } \n/* single-portfolio-overview-title-typography \n=========================*/\n.aux-single .type-portfolio .entry-side-title > h1{ color:var(--e-global-color-secondary); font-size:30px; font-weight:700; } \n@media(max-width: 768px){ .aux-single .type-portfolio .entry-side-title > h1{ font-size:20px; }  } \n/* portfolio-related-posts-title-typography \n=========================*/\n.single-portfolio .aux-widget-related-posts .hentry .entry-title a{ color:rgb(25, 25, 25); } \n/* portfolio-related-posts-label-typography \n=========================*/\n.single-portfolio .aux-widget-related-posts .widget-title{ color:var(--e-global-color-secondary); font-size:34px; } \n@media(max-width: 1024px){ .single-portfolio .aux-widget-related-posts .widget-title{ font-size:26px; }  } \n@media(max-width: 768px){ .single-portfolio .aux-widget-related-posts .widget-title{ font-size:22px; }  } \n/* elementor-color-primary \n=========================*/\n.aux-customize-preview.elementor-kit-75 {--e-global-color-primary: #191919;}\n/* elementor-color-secondary \n=========================*/\n.aux-customize-preview.elementor-kit-75 {--e-global-color-secondary: rgb(143, 20, 23);}\n/* elementor-color-text \n=========================*/\n.aux-customize-preview.elementor-kit-75 {--e-global-color-text: #7A7A7A;}\n/* elementor-color-accent \n=========================*/\n.aux-customize-preview.elementor-kit-75 {--e-global-color-accent: #FFFFFF;}\n\";s:16:\"custom_css_array\";a:47:{s:17:\"header_logo_width\";s:52:\".aux-logo-header .aux-logo-anchor{ max-width:80px; }\";s:27:\"header_logo_max_height_type\";s:60:\".aux-logo-header .aux-logo-anchor > img { max-height:85px; }\";s:27:\"site_frame_background_color\";s:192:\"@media screen and (min-width: 700px) { .aux-framed .aux-side-frames, body.aux-framed:after, .aux-framed .aux-side-frames:before, .aux-framed .aux-side-frames:after {background-color:#111111;}}\";s:19:\"sticky_header_color\";s:118:\".aux-elementor-header.aux-sticky .elementor-section-wrap > .elementor-section { background-color:#FFFFFF !important; }\";s:35:\"site_header_container_scaled_height\";s:287:\".aux-top-sticky .site-header-section.aux-sticky .aux-fill .aux-menu-depth-0 > .aux-item-content, .aux-top-sticky .site-header-section.aux-sticky .aux-header-elements,.aux-elementor-header.aux-sticky .elementor-section-wrap > .elementor-section > .elementor-container { min-height:80px; }\";s:28:\"site_header_container_height\";s:161:\".site-header-section .aux-header-elements:not(.aux-vertical-menu-elements), .site-header-section .aux-fill .aux-menu-depth-0 > .aux-item-content { height:85px; }\";s:31:\"site_transparent_header_bgcolor\";s:50:\".site-header-section { background-color:#FFFFFF; }\";s:35:\"site_vertical_menu_background_color\";s:50:\".aux-vertical-menu-side { background-color:#FFF; }\";s:34:\"site_header_navigation_item_height\";s:87:\".site-header-section .aux-middle .aux-menu-depth-0 > .aux-item-content { height:60px; }\";s:38:\"site_mobile_header_toggle_button_color\";s:185:\".site-header-section .aux-header .aux-burger:before, .site-header-section .aux-header .aux-burger:after, .site-header-section .aux-header .aux-burger .mid-line { border-color:#3d3d3d; }\";s:38:\"site_menu_full_screen_background_color\";s:70:\"#fs-menu-search:before { background-color:rgba(255, 255, 255, 0.95); }\";s:32:\"site_top_header_background_color\";s:39:\"#top-header {background-color:#FFFFFF;}\";s:24:\"blog_post_like_icon_size\";s:77:\".single-post .wp_ulike_general_class .wp_ulike_btn:before { font-size:10px; }\";s:32:\"blog_post_share_button_icon_size\";s:68:\".single-post .aux-single-post-share span::before { font-size:10px; }\";s:38:\"post_title_bar_overlay_pattern_opacity\";s:59:\".single-post .aux-overlay-bg-hash::before { opacity:0.15; }\";s:38:\"page_title_bar_overlay_pattern_opacity\";s:51:\".page .aux-overlay-bg-hash::before { opacity:0.5; }\";s:29:\"subfooter_bar_layout_bg_color\";s:48:\".aux-subfooter-bar { background-color:#fafafa; }\";s:30:\"subfooter_bar_top_border_color\";s:52:\".aux-subfooter-bar { border-top:1px solid #EAEAEA; }\";s:34:\"subfooter_layout_bg_image_position\";s:51:\".aux-subfooter {background-position:center center;}\";s:30:\"subfooter_layout_bg_image_size\";s:39:\".aux-subfooter {background-size:cover;}\";s:32:\"subfooter_layout_bg_image_repeat\";s:45:\".aux-subfooter {background-repeat:no-repeat;}\";s:26:\"subfooter_top_border_color\";s:48:\".aux-subfooter { border-top:1px solid #EAEAEA; }\";s:20:\"site_footer_bg_color\";s:44:\".aux-site-footer {background-color:#1A1A1A;}\";s:23:\"footer_top_border_color\";s:48:\".aux-site-footer {border-top:1px solid #EAEAEA;}\";s:23:\"footer_top_border_width\";s:42:\".aux-site-footer { border-top-width:1px; }\";s:30:\"site_secondary_logo_max_height\";s:58:\".aux-logo-footer .aux-logo-anchor img { max-height:50px; }\";s:39:\"portfolio_single_share_button_icon_size\";s:78:\".single-portfolio .aux-single-portfolio-share span::before { font-size:10px; }\";s:31:\"portfolio_single_like_icon_size\";s:76:\".single-portfolio .wp_ulike_general_class button::before { font-size:10px; }\";s:43:\"portfolio_title_bar_overlay_pattern_opacity\";s:63:\".single-portfolio .aux-overlay-bg-hash::before { opacity:0.5; }\";s:44:\"portfolio_classic_entry_box_background_color\";s:87:\".post-type-archive-portfolio .aux-entry-boxed .entry-main { background-color:#FFFFFF; }\";s:40:\"portfolio_classic_entry_box_border_color\";s:94:\".post-type-archive-portfolio .aux-entry-boxed .entry-main { border-color:#EAEAEA !important; }\";s:36:\"portfolio_land_side_background_color\";s:88:\".post-type-archive-portfolio .aux-item-land .aux-land-side { background-color:#FFFFFF; }\";s:32:\"portfolio_land_side_border_color\";s:95:\".post-type-archive-portfolio .aux-item-land .aux-land-side { border-color:#EAEAEA !important; }\";s:15:\"body_typography\";s:29:\"body{ font-family:\'Mukta\'; } \";s:18:\"general_heading_h1\";s:46:\"body h1, body .aux-h1{ font-family:\'Heebo\'; } \";s:18:\"general_heading_h2\";s:46:\"body h2, body .aux-h2{ font-family:\'Heebo\'; } \";s:18:\"general_heading_h3\";s:46:\"body h3, body .aux-h3{ font-family:\'Heebo\'; } \";s:18:\"general_heading_h4\";s:46:\"body h4, body .aux-h4{ font-family:\'Heebo\'; } \";s:18:\"general_heading_h5\";s:46:\"body h5, body .aux-h5{ font-family:\'Mukta\'; } \";s:44:\"single_portfolio_overview_content_typography\";s:203:\".aux-single .type-portfolio .entry-side-overview{ color:var(--e-global-color-primary); font-size:16px; } \n@media(max-width: 768px){ .aux-single .type-portfolio .entry-side-overview{ font-size:14px; }  } \";s:42:\"single_portfolio_overview_title_typography\";s:226:\".aux-single .type-portfolio .entry-side-title > h1{ color:var(--e-global-color-secondary); font-size:30px; font-weight:700; } \n@media(max-width: 768px){ .aux-single .type-portfolio .entry-side-title > h1{ font-size:20px; }  } \";s:40:\"portfolio_related_posts_title_typography\";s:93:\".single-portfolio .aux-widget-related-posts .hentry .entry-title a{ color:rgb(25, 25, 25); } \";s:40:\"portfolio_related_posts_label_typography\";s:331:\".single-portfolio .aux-widget-related-posts .widget-title{ color:var(--e-global-color-secondary); font-size:34px; } \n@media(max-width: 1024px){ .single-portfolio .aux-widget-related-posts .widget-title{ font-size:26px; }  } \n@media(max-width: 768px){ .single-portfolio .aux-widget-related-posts .widget-title{ font-size:22px; }  } \";s:23:\"elementor_color_primary\";s:76:\".aux-customize-preview.elementor-kit-75 {--e-global-color-primary: #191919;}\";s:25:\"elementor_color_secondary\";s:87:\".aux-customize-preview.elementor-kit-75 {--e-global-color-secondary: rgb(143, 20, 23);}\";s:20:\"elementor_color_text\";s:73:\".aux-customize-preview.elementor-kit-75 {--e-global-color-text: #7A7A7A;}\";s:22:\"elementor_color_accent\";s:75:\".aux-customize-preview.elementor-kit-75 {--e-global-color-accent: #FFFFFF;}\";}s:16:\"custom_js_string\";s:0:\"\";s:15:\"custom_js_array\";a:0:{}s:23:\"are_auxin_caps_assigned\";i:1;s:19:\"initial_version_pro\";s:5:\"5.7.3\";s:16:\"initial_date_pro\";s:19:\"2022-03-11 10:35:08\";s:10:\"client_key\";s:58:\"9zlR5DGcto9bZ9YWJ=48aRW07Ldc0sbGir4lFauv15Rpya5HW3b2p3XWY2\";s:24:\"auxin_capabilities_added\";i:1;s:13:\"custom_js_ver\";d:6.70000000000000017763568394002504646778106689453125;s:20:\"use_inline_custom_js\";b:0;s:14:\"custom_css_ver\";d:5.79999999999999982236431605997495353221893310546875;s:21:\"use_inline_custom_css\";b:0;s:26:\"auxin_wp_image_sizes_ratio\";i:1;s:45:\"auxin_permalink_permalink_options_initialized\";i:1;s:37:\"auxin_permalink_pending_rewrite_rules\";i:0;s:25:\"default_template_imported\";b:1;s:35:\"auxin_permalink_portfolio_structure\";s:8:\"products\";s:29:\"auxin_permalink_faq_structure\";s:3:\"faq\";s:37:\"auxin_permalink_faq_archive_structure\";s:7:\"faq/all\";s:42:\"auxin_permalink_faq_faq_category_structure\";s:12:\"faq-category\";s:26:\"redirected_to_welcome_page\";i:1;s:11:\"custom_logo\";i:332;s:35:\"increasing_curl_timeout_is_required\";i:15;s:43:\"auxin_permalink_portfolio_archive_structure\";s:13:\"portfolio/all\";s:49:\"auxin_permalink_portfolio_portfolio_cat_structure\";s:13:\"portfolio-cat\";s:49:\"auxin_permalink_portfolio_portfolio_tag_structure\";s:13:\"portfolio-tag\";}','yes'),(175,'theme_switched','','yes'),(178,'_site_transient_timeout_auxin_font_icons_list_auxicon2','1653161819','no'),(179,'_site_transient_auxin_font_icons_list_auxicon2','a:76:{i:0;O:8:\"stdClass\":3:{s:4:\"name\";s:20:\"Arrows anticlockwise\";s:9:\"classname\";s:30:\".auxicon2-arrows-anticlockwise\";s:7:\"content\";s:3:\"\\61\";}i:1;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Circle plus outline\";s:9:\"classname\";s:29:\".auxicon2-circle-plus-outline\";s:7:\"content\";s:3:\"\\62\";}i:2;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Arrows drag up dashed\";s:9:\"classname\";s:31:\".auxicon2-arrows-drag-up-dashed\";s:7:\"content\";s:3:\"\\63\";}i:3;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Hamburger 2\";s:9:\"classname\";s:21:\".auxicon2-hamburger-2\";s:7:\"content\";s:3:\"\\64\";}i:4;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Hamburger1\";s:9:\"classname\";s:20:\".auxicon2-hamburger1\";s:7:\"content\";s:3:\"\\65\";}i:5;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Arrow chevron thin left\";s:9:\"classname\";s:33:\".auxicon2-arrow-chevron-thin-left\";s:7:\"content\";s:3:\"\\66\";}i:6;O:8:\"stdClass\":3:{s:4:\"name\";s:26:\"Arrows left double chevron\";s:9:\"classname\";s:36:\".auxicon2-arrows-left-double-chevron\";s:7:\"content\";s:3:\"\\67\";}i:7;O:8:\"stdClass\":3:{s:4:\"name\";s:27:\"Arrows right double chevron\";s:9:\"classname\";s:37:\".auxicon2-arrows-right-double-chevron\";s:7:\"content\";s:3:\"\\68\";}i:8;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Arrows chevron thin right\";s:9:\"classname\";s:35:\".auxicon2-arrows-chevron-thin-right\";s:7:\"content\";s:3:\"\\69\";}i:9;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Close remove 1\";s:9:\"classname\";s:24:\".auxicon2-close-remove-1\";s:7:\"content\";s:3:\"\\6a\";}i:10;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Plus 1\";s:9:\"classname\";s:16:\".auxicon2-plus-1\";s:7:\"content\";s:3:\"\\6b\";}i:11;O:8:\"stdClass\":3:{s:4:\"name\";s:22:\"Arrow slim left dashed\";s:9:\"classname\";s:32:\".auxicon2-arrow-slim-left-dashed\";s:7:\"content\";s:3:\"\\6c\";}i:12;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Arrow slim left\";s:9:\"classname\";s:25:\".auxicon2-arrow-slim-left\";s:7:\"content\";s:3:\"\\6d\";}i:13;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Arrow slim right dashed\";s:9:\"classname\";s:33:\".auxicon2-arrow-slim-right-dashed\";s:7:\"content\";s:3:\"\\70\";}i:14;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Arrow slim right\";s:9:\"classname\";s:26:\".auxicon2-arrow-slim-right\";s:7:\"content\";s:3:\"\\71\";}i:15;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Arrow chevron thin up\";s:9:\"classname\";s:31:\".auxicon2-arrow-chevron-thin-up\";s:7:\"content\";s:3:\"\\6e\";}i:16;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Arrows up double chevron\";s:9:\"classname\";s:34:\".auxicon2-arrows-up-double-chevron\";s:7:\"content\";s:3:\"\\6f\";}i:17;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Square plus outline\";s:9:\"classname\";s:29:\".auxicon2-square-plus-outline\";s:7:\"content\";s:3:\"\\72\";}i:18;O:8:\"stdClass\":3:{s:4:\"name\";s:26:\"Arrows down double chevron\";s:9:\"classname\";s:36:\".auxicon2-arrows-down-double-chevron\";s:7:\"content\";s:3:\"\\73\";}i:19;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Arrows chevron down\";s:9:\"classname\";s:29:\".auxicon2-arrows-chevron-down\";s:7:\"content\";s:3:\"\\74\";}i:20;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Basic bookmark\";s:9:\"classname\";s:24:\".auxicon2-basic-bookmark\";s:7:\"content\";s:3:\"\\75\";}i:21;O:8:\"stdClass\":3:{s:4:\"name\";s:18:\"Arrow medium right\";s:9:\"classname\";s:28:\".auxicon2-arrow-medium-right\";s:7:\"content\";s:3:\"\\76\";}i:22;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"Arrow medium left\";s:9:\"classname\";s:27:\".auxicon2-arrow-medium-left\";s:7:\"content\";s:3:\"\\77\";}i:23;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Arrow chevron med right\";s:9:\"classname\";s:33:\".auxicon2-arrow-chevron-med-right\";s:7:\"content\";s:3:\"\\78\";}i:24;O:8:\"stdClass\":3:{s:4:\"name\";s:22:\"Arrow chevron med left\";s:9:\"classname\";s:32:\".auxicon2-arrow-chevron-med-left\";s:7:\"content\";s:3:\"\\79\";}i:25;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Arrow chevron fat top\";s:9:\"classname\";s:31:\".auxicon2-arrow-chevron-fat-top\";s:7:\"content\";s:3:\"\\7a\";}i:26;O:8:\"stdClass\":3:{s:4:\"name\";s:22:\"Arrow chevron fat down\";s:9:\"classname\";s:32:\".auxicon2-arrow-chevron-fat-down\";s:7:\"content\";s:3:\"\\41\";}i:27;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Arrow chevron fat right\";s:9:\"classname\";s:33:\".auxicon2-arrow-chevron-fat-right\";s:7:\"content\";s:3:\"\\42\";}i:28;O:8:\"stdClass\":3:{s:4:\"name\";s:22:\"Arrow chevron fat left\";s:9:\"classname\";s:32:\".auxicon2-arrow-chevron-fat-left\";s:7:\"content\";s:3:\"\\43\";}i:29;O:8:\"stdClass\":3:{s:4:\"name\";s:22:\"Arrow chevron slim top\";s:9:\"classname\";s:32:\".auxicon2-arrow-chevron-slim-top\";s:7:\"content\";s:3:\"\\44\";}i:30;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Arrow chevron slim down\";s:9:\"classname\";s:33:\".auxicon2-arrow-chevron-slim-down\";s:7:\"content\";s:3:\"\\45\";}i:31;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Arrow chevron slim left\";s:9:\"classname\";s:33:\".auxicon2-arrow-chevron-slim-left\";s:7:\"content\";s:3:\"\\46\";}i:32;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Arrow chevron slim right\";s:9:\"classname\";s:34:\".auxicon2-arrow-chevron-slim-right\";s:7:\"content\";s:3:\"\\47\";}i:33;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Arrow chevron pixel top\";s:9:\"classname\";s:33:\".auxicon2-arrow-chevron-pixel-top\";s:7:\"content\";s:3:\"\\48\";}i:34;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Arrow chevron pixel down\";s:9:\"classname\";s:34:\".auxicon2-arrow-chevron-pixel-down\";s:7:\"content\";s:3:\"\\49\";}i:35;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Arrow chevron pixel left\";s:9:\"classname\";s:34:\".auxicon2-arrow-chevron-pixel-left\";s:7:\"content\";s:3:\"\\4a\";}i:36;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Arrow chevron pixel right\";s:9:\"classname\";s:35:\".auxicon2-arrow-chevron-pixel-right\";s:7:\"content\";s:3:\"\\4b\";}i:37;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Arrow chevron pixel left2\";s:9:\"classname\";s:35:\".auxicon2-arrow-chevron-pixel-left2\";s:7:\"content\";s:3:\"\\4c\";}i:38;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Arrow pixel fat top\";s:9:\"classname\";s:29:\".auxicon2-arrow-pixel-fat-top\";s:7:\"content\";s:3:\"\\4d\";}i:39;O:8:\"stdClass\":3:{s:4:\"name\";s:20:\"Arrow pixel fat down\";s:9:\"classname\";s:30:\".auxicon2-arrow-pixel-fat-down\";s:7:\"content\";s:3:\"\\4e\";}i:40;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Arrow line med left\";s:9:\"classname\";s:29:\".auxicon2-arrow-line-med-left\";s:7:\"content\";s:3:\"\\4f\";}i:41;O:8:\"stdClass\":3:{s:4:\"name\";s:20:\"Arrow line med right\";s:9:\"classname\";s:30:\".auxicon2-arrow-line-med-right\";s:7:\"content\";s:3:\"\\50\";}i:42;O:8:\"stdClass\":3:{s:4:\"name\";s:18:\"Arrow line med top\";s:9:\"classname\";s:28:\".auxicon2-arrow-line-med-top\";s:7:\"content\";s:3:\"\\51\";}i:43;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Arrow line med down\";s:9:\"classname\";s:29:\".auxicon2-arrow-line-med-down\";s:7:\"content\";s:3:\"\\52\";}i:44;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Arrow line left\";s:9:\"classname\";s:25:\".auxicon2-arrow-line-left\";s:7:\"content\";s:3:\"\\53\";}i:45;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Arrow line right\";s:9:\"classname\";s:26:\".auxicon2-arrow-line-right\";s:7:\"content\";s:3:\"\\54\";}i:46;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Arrow line top\";s:9:\"classname\";s:24:\".auxicon2-arrow-line-top\";s:7:\"content\";s:3:\"\\55\";}i:47;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Arrow line down\";s:9:\"classname\";s:25:\".auxicon2-arrow-line-down\";s:7:\"content\";s:3:\"\\56\";}i:48;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Arrow chevron pixel top2\";s:9:\"classname\";s:34:\".auxicon2-arrow-chevron-pixel-top2\";s:7:\"content\";s:3:\"\\57\";}i:49;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Arrow chevron pixel down2\";s:9:\"classname\";s:35:\".auxicon2-arrow-chevron-pixel-down2\";s:7:\"content\";s:3:\"\\58\";}i:50;O:8:\"stdClass\":3:{s:4:\"name\";s:26:\"Arrow chevron pixel right2\";s:9:\"classname\";s:36:\".auxicon2-arrow-chevron-pixel-right2\";s:7:\"content\";s:3:\"\\59\";}i:51;O:8:\"stdClass\":3:{s:4:\"name\";s:20:\"Arrow pixel fat left\";s:9:\"classname\";s:30:\".auxicon2-arrow-pixel-fat-left\";s:7:\"content\";s:3:\"\\5a\";}i:52;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Arrow pixel fat right\";s:9:\"classname\";s:31:\".auxicon2-arrow-pixel-fat-right\";s:7:\"content\";s:3:\"\\30\";}i:53;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Play outline triangle\";s:9:\"classname\";s:31:\".auxicon2-play-outline-triangle\";s:7:\"content\";s:3:\"\\31\";}i:54;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Arrow thin up\";s:9:\"classname\";s:23:\".auxicon2-arrow-thin-up\";s:7:\"content\";s:3:\"\\33\";}i:55;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Arrow thin right\";s:9:\"classname\";s:26:\".auxicon2-arrow-thin-right\";s:7:\"content\";s:3:\"\\34\";}i:56;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Arrow thin left\";s:9:\"classname\";s:25:\".auxicon2-arrow-thin-left\";s:7:\"content\";s:3:\"\\35\";}i:57;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Arrow thin down\";s:9:\"classname\";s:25:\".auxicon2-arrow-thin-down\";s:7:\"content\";s:3:\"\\36\";}i:58;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Arrow chevron small right\";s:9:\"classname\";s:35:\".auxicon2-arrow-chevron-small-right\";s:7:\"content\";s:3:\"\\37\";}i:59;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Arrow chevron small left\";s:9:\"classname\";s:34:\".auxicon2-arrow-chevron-small-left\";s:7:\"content\";s:3:\"\\38\";}i:60;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Arrow chevron small down\";s:9:\"classname\";s:34:\".auxicon2-arrow-chevron-small-down\";s:7:\"content\";s:3:\"\\21\";}i:61;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Play triangle\";s:9:\"classname\";s:23:\".auxicon2-play-triangle\";s:7:\"content\";s:3:\"\\23\";}i:62;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Play triangle 1\";s:9:\"classname\";s:25:\".auxicon2-play-triangle-1\";s:7:\"content\";s:3:\"\\24\";}i:63;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Play triangle 2\";s:9:\"classname\";s:25:\".auxicon2-play-triangle-2\";s:7:\"content\";s:3:\"\\25\";}i:64;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Arrow backward\";s:9:\"classname\";s:24:\".auxicon2-arrow-backward\";s:7:\"content\";s:3:\"\\26\";}i:65;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Check mark\";s:9:\"classname\";s:20:\".auxicon2-check-mark\";s:7:\"content\";s:3:\"\\27\";}i:66;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Check mark 1\";s:9:\"classname\";s:22:\".auxicon2-check-mark-1\";s:7:\"content\";s:3:\"\\28\";}i:67;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Code working\";s:9:\"classname\";s:22:\".auxicon2-code-working\";s:7:\"content\";s:3:\"\\29\";}i:68;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Code\";s:9:\"classname\";s:14:\".auxicon2-code\";s:7:\"content\";s:3:\"\\2a\";}i:69;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Circle plus outline 1\";s:9:\"classname\";s:31:\".auxicon2-circle-plus-outline-1\";s:7:\"content\";s:3:\"\\2e\";}i:70;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Plus circle\";s:9:\"classname\";s:21:\".auxicon2-plus-circle\";s:7:\"content\";s:3:\"\\2f\";}i:71;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Hamburger 3\";s:9:\"classname\";s:21:\".auxicon2-hamburger-3\";s:7:\"content\";s:3:\"\\32\";}i:72;O:8:\"stdClass\":3:{s:4:\"name\";s:18:\"Arrow circle right\";s:9:\"classname\";s:28:\".auxicon2-arrow-circle-right\";s:7:\"content\";s:3:\"\\39\";}i:73;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Flower Design\";s:9:\"classname\";s:23:\".auxicon2-flower-design\";s:7:\"content\";s:3:\"\\22\";}i:74;O:8:\"stdClass\":3:{s:4:\"name\";s:18:\"Check mark Circled\";s:9:\"classname\";s:27:\".auxicon2-checkmark-circled\";s:7:\"content\";s:3:\"\\2b\";}i:75;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Close Circled\";s:9:\"classname\";s:23:\".auxicon2-close-circled\";s:7:\"content\";s:3:\"\\2c\";}}','no'),(184,'smile_fonts','a:1:{s:15:\"phlox-pro-icons\";a:4:{s:7:\"include\";s:21:\"smile_fonts/phlox-pro\";s:6:\"folder\";s:21:\"smile_fonts/phlox-pro\";s:5:\"style\";s:25:\"phlox-pro/auxin-front.css\";s:6:\"config\";s:11:\"charmap.php\";}}','yes'),(185,'_transient_auxin_maybe_flush_autoptimize_cache','172800','yes'),(186,'elementor_disable_color_schemes','yes','yes'),(187,'elementor_disable_typography_schemes','yes','yes'),(188,'elementor_page_title_selector','.page-title','yes'),(189,'elementor_allow_svg','1','yes'),(190,'_transient_timeout_auxin_has_checked_to_disable_default_elementor_colors_fonts','1695369250','no'),(191,'_transient_auxin_has_checked_to_disable_default_elementor_colors_fonts','5.4.17','no'),(192,'rp4wp_do_install','0','no'),(193,'widget_aux_about_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(194,'widget_aux_recent_post_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(195,'widget_aux_popular_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(196,'widget_aux_testimonial','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(197,'widget_aux_staff','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(198,'widget_aux_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(199,'widget_aux_code','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(200,'widget_aux_contact_form','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(201,'widget_aux_divider','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(202,'widget_aux_gmaps','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(203,'widget_aux_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(204,'widget_aux_before_after','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(205,'widget_aux_accordion_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(206,'widget_aux_tabs_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(207,'widget_aux_latest_posts_slider','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(208,'widget_aux_quote','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(209,'widget_aux_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(210,'widget_aux_socials_list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(211,'widget_aux_socials_list_2','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(212,'widget_aux_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(213,'widget_aux_contact_box','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(220,'_transient_timeout_element-pack-notice-id-license-issue','1678531063','no'),(221,'_transient_element-pack-notice-id-license-issue','1','no'),(222,'medium_crop','1','yes'),(223,'medium_large_crop','1','yes'),(224,'large_crop','1','yes'),(225,'_transient_auxin_update_plugins','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1647843826;}','yes'),(226,'phlox-pro_license_update','1','no'),(227,'_transient_auxin_update_themes','O:8:\"stdClass\":2:{s:12:\"last_checked\";i:1647844719;s:7:\"checked\";a:1:{s:9:\"phlox-pro\";s:5:\"5.7.3\";}}','yes'),(228,'_transient_timeout_auxin_has_elementor_header_template_ported','1678530912','no'),(229,'_transient_auxin_has_elementor_header_template_ported','5.7.3','no'),(230,'_transient_timeout_auxin_has_elementor_footer_template_ported','1678530912','no'),(231,'_transient_auxin_has_elementor_footer_template_ported','5.7.3','no'),(234,'phlox-pro_audit_token','ae0cc43cad2eb3989bb9833daf91e3e8','yes'),(239,'phlox-pro_theme_options','a:593:{s:24:\"typography_html_template\";s:0:\"\";s:27:\"global_colors_html_template\";s:0:\"\";s:17:\"site_wrapper_size\";s:4:\"full\";s:21:\"site_max_width_layout\";s:5:\"s-fhd\";s:15:\"body_typography\";s:366:\"{\"typography-hover\":{\"normal\":{\"font-family\":{\"value\":\"Mukta:200,300,regular,500,600,700,800\",\"type\":\"gFont\"},\"color\":\"\",\"font-size-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"font-weight\":\"\",\"text-transform\":\"\",\"font-style\":\"\",\"text-decoration\":\"\",\"line-height-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"letter-spacing-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}}}}}\";s:19:\"general_heading_all\";s:0:\"\";s:18:\"general_heading_h1\";s:374:\"{\"typography-hover\":{\"normal\":{\"font-family\":{\"value\":\"Heebo:100,200,300,regular,500,600,700,800,900\",\"type\":\"gFont\"},\"color\":\"\",\"font-size-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"font-weight\":\"\",\"text-transform\":\"\",\"font-style\":\"\",\"text-decoration\":\"\",\"line-height-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"letter-spacing-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}}}}}\";s:18:\"general_heading_h2\";s:374:\"{\"typography-hover\":{\"normal\":{\"font-family\":{\"value\":\"Heebo:100,200,300,regular,500,600,700,800,900\",\"type\":\"gFont\"},\"color\":\"\",\"font-size-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"font-weight\":\"\",\"text-transform\":\"\",\"font-style\":\"\",\"text-decoration\":\"\",\"line-height-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"letter-spacing-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}}}}}\";s:18:\"general_heading_h3\";s:374:\"{\"typography-hover\":{\"normal\":{\"font-family\":{\"value\":\"Heebo:100,200,300,regular,500,600,700,800,900\",\"type\":\"gFont\"},\"color\":\"\",\"font-size-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"font-weight\":\"\",\"text-transform\":\"\",\"font-style\":\"\",\"text-decoration\":\"\",\"line-height-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"letter-spacing-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}}}}}\";s:18:\"general_heading_h4\";s:374:\"{\"typography-hover\":{\"normal\":{\"font-family\":{\"value\":\"Heebo:100,200,300,regular,500,600,700,800,900\",\"type\":\"gFont\"},\"color\":\"\",\"font-size-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"font-weight\":\"\",\"text-transform\":\"\",\"font-style\":\"\",\"text-decoration\":\"\",\"line-height-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"letter-spacing-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}}}}}\";s:18:\"general_heading_h5\";s:366:\"{\"typography-hover\":{\"normal\":{\"font-family\":{\"value\":\"Mukta:200,300,regular,500,600,700,800\",\"type\":\"gFont\"},\"color\":\"\",\"font-size-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"font-weight\":\"\",\"text-transform\":\"\",\"font-style\":\"\",\"text-decoration\":\"\",\"line-height-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"letter-spacing-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}}}}}\";s:17:\"header_logo_width\";s:2:\"80\";s:27:\"header_logo_max_height_type\";s:4:\"auto\";s:22:\"header_logo_max_height\";s:2:\"85\";s:25:\"page_animation_nav_enable\";s:0:\"\";s:23:\"page_animation_nav_type\";s:4:\"fade\";s:19:\"page_preload_enable\";s:0:\"\";s:27:\"page_preload_custom_loading\";s:0:\"\";s:26:\"page_preload_loading_image\";s:0:\"\";s:25:\"page_preload_prgoress_bar\";s:1:\"1\";s:34:\"page_preload_prgoress_bar_position\";s:3:\"top\";s:31:\"page_preload_prgoress_bar_color\";s:0:\"\";s:31:\"page_preload_page_overlay_color\";s:0:\"\";s:23:\"elementor_color_primary\";s:7:\"#191919\";s:25:\"elementor_color_secondary\";s:16:\"rgb(143, 20, 23)\";s:20:\"elementor_color_text\";s:7:\"#7A7A7A\";s:22:\"elementor_color_accent\";s:7:\"#FFFFFF\";s:39:\"elementor_global_custom_colors_repeater\";s:0:\"\";s:31:\"use_legacy_featured_colors_info\";s:0:\"\";s:26:\"use_legacy_featured_colors\";b:0;s:21:\"site_featured_color_1\";s:0:\"\";s:21:\"site_featured_color_2\";s:0:\"\";s:21:\"site_featured_color_3\";s:0:\"\";s:21:\"site_featured_color_4\";s:0:\"\";s:21:\"site_featured_color_5\";s:0:\"\";s:21:\"site_featured_color_6\";s:0:\"\";s:21:\"site_featured_color_7\";s:0:\"\";s:21:\"site_featured_color_8\";s:0:\"\";s:25:\"site_body_background_show\";s:0:\"\";s:26:\"site_body_background_color\";s:0:\"\";s:28:\"site_body_background_pattern\";s:4:\"none\";s:26:\"site_body_background_image\";s:0:\"\";s:25:\"site_body_background_size\";s:4:\"auto\";s:27:\"site_body_background_repeat\";s:9:\"no-repeat\";s:29:\"site_body_background_position\";s:8:\"left top\";s:27:\"site_body_background_attach\";s:6:\"scroll\";s:29:\"site_content_background_color\";s:0:\"\";s:15:\"site_frame_show\";s:0:\"\";s:27:\"site_frame_background_color\";s:7:\"#111111\";s:24:\"global_video_player_skin\";s:4:\"dark\";s:24:\"global_audio_player_skin\";s:4:\"dark\";s:23:\"archive_pagination_skin\";s:10:\"aux-square\";s:34:\"archive_pagination_skin_typography\";s:0:\"\";s:41:\"archive_pagination_skin_active_typography\";s:0:\"\";s:44:\"archive_pagination_skin_next_prev_typography\";s:0:\"\";s:33:\"site_mobile_browser_toolbar_color\";s:7:\"#1bb0ce\";s:20:\"comment_forms_inputs\";a:4:{i:0;s:5:\"email\";i:1;s:6:\"author\";i:2;s:3:\"url\";i:3;s:7:\"cookies\";}s:18:\"comment_forms_skin\";s:7:\"classic\";s:19:\"comment_forms_label\";s:0:\"\";s:24:\"comment_forms_label_typo\";s:0:\"\";s:20:\"comment_forms_layout\";s:7:\"default\";s:26:\"comment_forms_replay_title\";s:13:\"Add a Comment\";s:31:\"comment_forms_replay_title_typo\";s:0:\"\";s:19:\"comment_forms_notes\";s:70:\"Your email address will not be published. Required fields are marked *\";s:24:\"comment_forms_notes_typo\";s:0:\"\";s:33:\"comment_forms_response_title_typo\";s:0:\"\";s:25:\"comment_forms_button_typo\";s:0:\"\";s:30:\"comment_forms_placeholder_typo\";s:0:\"\";s:19:\"comment_author_typo\";s:0:\"\";s:17:\"comment_info_typo\";s:0:\"\";s:20:\"comment_content_typo\";s:0:\"\";s:38:\"sidebar_common_widget_title_typography\";s:0:\"\";s:39:\"sidebar_primary_widget_title_typography\";s:0:\"\";s:41:\"sidebar_secondary_widget_title_typography\";s:0:\"\";s:25:\"sidebar_global_typography\";s:0:\"\";s:24:\"sidebar_widget_togglable\";s:0:\"\";s:29:\"sidebar_widget_expand_on_init\";s:1:\"1\";s:23:\"sidebar_custom_dropdown\";s:4:\"none\";s:35:\"site_elementor_header_edit_template\";s:2:\"76\";s:30:\"site_elementor_header_template\";s:2:\"76\";s:39:\"site_elementor_header_templates_library\";s:4:\"7116\";s:22:\"site_header_use_legacy\";b:0;s:19:\"site_overlay_header\";b:0;s:22:\"site_header_top_sticky\";b:0;s:19:\"sticky_header_color\";s:7:\"#FFFFFF\";s:35:\"site_header_container_scaled_height\";s:2:\"80\";s:17:\"site_header_info3\";s:0:\"\";s:30:\"site_header_section_use_legacy\";b:0;s:22:\"site_header_top_layout\";s:21:\"horizontal-menu-right\";s:17:\"site_header_width\";s:5:\"boxed\";s:28:\"site_header_container_height\";s:2:\"85\";s:25:\"site_header_search_button\";s:0:\"\";s:24:\"site_header_social_icons\";s:0:\"\";s:20:\"site_header_msg_text\";s:0:\"\";s:29:\"site_header_social_icons_size\";s:5:\"small\";s:16:\"show_header_logo\";s:1:\"1\";s:25:\"site_header_border_bottom\";s:1:\"1\";s:21:\"site_header_animation\";s:0:\"\";s:27:\"site_header_animation_delay\";s:0:\"\";s:31:\"site_transparent_header_bgcolor\";s:7:\"#FFFFFF\";s:24:\"site_header_color_scheme\";s:4:\"dark\";s:31:\"site_header_sticky_color_scheme\";s:4:\"dark\";s:26:\"site_header_logo_can_scale\";s:1:\"1\";s:35:\"site_vertical_menu_background_color\";s:4:\"#FFF\";s:33:\"site_header_navigation_use_legacy\";b:0;s:31:\"site_header_navigation_sub_skin\";s:7:\"classic\";s:32:\"site_vertical_header_items_align\";s:4:\"left\";s:40:\"site_vertical_header_navigation_sub_skin\";s:7:\"classic\";s:33:\"site_header_navigation_sub_effect\";s:0:\"\";s:37:\"site_header_navigation_with_indicator\";s:1:\"1\";s:36:\"site_header_navigation_with_splitter\";s:1:\"1\";s:33:\"site_vertical_menu_footer_display\";s:1:\"1\";s:34:\"site_vertical_header_search_border\";s:1:\"1\";s:28:\"site_vertical_menu_copyright\";s:1:\"1\";s:35:\"site_header_navigation_sub_location\";s:12:\"below-header\";s:34:\"site_header_navigation_item_height\";s:2:\"60\";s:37:\"site_mobile_header_section_use_legacy\";b:0;s:38:\"site_mobile_header_toggle_button_color\";s:7:\"#3d3d3d\";s:38:\"site_mobile_header_toggle_button_style\";s:14:\"aux-lite-small\";s:32:\"site_header_mobile_menu_position\";s:10:\"toggle-bar\";s:38:\"site_menu_full_screen_background_color\";s:25:\"rgba(255, 255, 255, 0.95)\";s:26:\"site_menu_full_screen_skin\";s:0:\"\";s:31:\"site_header_fullscreen_template\";s:6:\"center\";s:38:\"site_menu_full_screen_background_image\";s:0:\"\";s:32:\"site_header_fullscreen_indicator\";s:1:\"1\";s:43:\"site_header_mobile_menu_offcanvas_alignment\";s:4:\"left\";s:28:\"site_header_mobile_menu_type\";s:6:\"toggle\";s:33:\"site_topheader_section_use_legacy\";b:0;s:14:\"show_topheader\";s:0:\"\";s:22:\"site_top_header_layout\";s:10:\"topheader1\";s:30:\"top_header_navigation_sub_skin\";s:7:\"classic\";s:32:\"site_top_header_background_color\";s:7:\"#FFFFFF\";s:35:\"site_top_header_background_gradient\";s:0:\"\";s:17:\"topheader_message\";s:0:\"\";s:27:\"topheader_secondary_message\";s:0:\"\";s:35:\"site_full_screen_section_use_legacy\";b:0;s:41:\"site_header_typography_section_use_legacy\";b:0;s:27:\"header_main_menu_typography\";s:0:\"\";s:25:\"header_submenu_typography\";s:0:\"\";s:34:\"header_menu_active_item_typography\";s:0:\"\";s:21:\"site_title_typography\";s:0:\"\";s:27:\"site_description_typography\";s:0:\"\";s:48:\"site_header_topbar_typography_section_use_legacy\";b:0;s:30:\"topheader_main_menu_typography\";s:0:\"\";s:28:\"topheader_message_typography\";s:0:\"\";s:38:\"topheader_secondary_message_typography\";s:0:\"\";s:22:\"socials_hide_on_tablet\";s:1:\"1\";s:21:\"socials_hide_on_phone\";s:1:\"1\";s:19:\"socials_brand_color\";s:0:\"\";s:25:\"socials_brand_color_hover\";s:0:\"\";s:26:\"socials_brand_color_custom\";s:0:\"\";s:8:\"facebook\";s:0:\"\";s:7:\"twitter\";s:0:\"\";s:8:\"dribbble\";s:0:\"\";s:7:\"youtube\";s:0:\"\";s:5:\"vimeo\";s:0:\"\";s:6:\"flickr\";s:0:\"\";s:4:\"digg\";s:0:\"\";s:11:\"stumbleupon\";s:0:\"\";s:6:\"lastfm\";s:0:\"\";s:9:\"delicious\";s:0:\"\";s:5:\"skype\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:6:\"tumblr\";s:0:\"\";s:9:\"pinterest\";s:0:\"\";s:9:\"instagram\";s:0:\"\";s:2:\"vk\";s:0:\"\";s:8:\"telegram\";s:0:\"\";s:3:\"rss\";s:0:\"\";s:28:\"post_single_sidebar_position\";s:13:\"right-sidebar\";s:30:\"post_single_sidebar_decoration\";s:6:\"border\";s:26:\"post_single_featured_color\";s:7:\"#1bb0ce\";s:21:\"post_max_width_layout\";s:0:\"\";s:25:\"post_single_content_style\";s:6:\"simple\";s:28:\"post_show_content_top_margin\";s:1:\"1\";s:22:\"show_post_single_media\";s:1:\"1\";s:26:\"show_post_single_meta_info\";s:1:\"1\";s:19:\"post_meta_date_show\";s:1:\"1\";s:21:\"post_meta_author_show\";s:1:\"1\";s:23:\"post_meta_comments_show\";s:1:\"1\";s:25:\"post_meta_categories_show\";s:1:\"1\";s:26:\"show_blog_post_like_button\";s:1:\"1\";s:26:\"blog_post_like_button_type\";s:4:\"icon\";s:30:\"blog_post_like_button_position\";s:3:\"top\";s:19:\"blog_post_like_icon\";s:15:\"auxicon-heart-2\";s:25:\"blog_post_like_icon_color\";s:0:\"\";s:29:\"blog_post_not_like_icon_color\";s:0:\"\";s:31:\"blog_post_like_icon_hover_color\";s:0:\"\";s:24:\"blog_post_like_icon_size\";s:0:\"\";s:21:\"blog_post_like_margin\";s:0:\"\";s:29:\"show_post_single_tags_section\";s:1:\"1\";s:27:\"show_blog_post_share_button\";s:1:\"1\";s:27:\"blog_post_share_button_type\";s:4:\"icon\";s:27:\"blog_post_share_button_icon\";s:13:\"auxicon-share\";s:33:\"blog_post_share_button_icon_color\";s:0:\"\";s:39:\"blog_post_share_button_icon_hover_color\";s:0:\"\";s:32:\"blog_post_share_button_icon_size\";s:0:\"\";s:29:\"blog_post_share_button_margin\";s:0:\"\";s:24:\"show_blog_author_section\";s:0:\"\";s:29:\"show_blog_author_section_text\";s:1:\"1\";s:31:\"show_blog_author_section_social\";s:1:\"1\";s:30:\"show_post_single_next_prev_nav\";s:1:\"1\";s:30:\"post_single_next_prev_nav_skin\";s:7:\"minimal\";s:30:\"comment_cookie_consent_enabled\";s:1:\"1\";s:19:\"comment_avatar_size\";s:2:\"60\";s:19:\"post_title_bar_show\";s:0:\"\";s:21:\"post_title_bar_preset\";s:14:\"normal_title_1\";s:31:\"post_title_bar_enable_customize\";s:0:\"\";s:33:\"post_title_bar_content_width_type\";s:5:\"boxed\";s:37:\"post_title_bar_content_section_height\";s:4:\"auto\";s:29:\"post_title_bar_vertical_align\";s:0:\"\";s:27:\"post_title_bar_scroll_arrow\";s:0:\"\";s:25:\"post_title_bar_title_show\";s:1:\"1\";s:31:\"post_title_bar_heading_bordered\";s:0:\"\";s:28:\"post_title_bar_heading_boxed\";s:0:\"\";s:31:\"post_title_bar_heading_bg_color\";s:0:\"\";s:27:\"post_title_bar_meta_enabled\";s:0:\"\";s:28:\"post_title_bar_bread_enabled\";s:1:\"1\";s:29:\"post_title_bar_bread_bordered\";s:0:\"\";s:30:\"post_title_bar_bread_sep_style\";s:23:\"auxicon-chevron-right-1\";s:25:\"post_title_bar_text_align\";s:4:\"left\";s:28:\"post_title_bar_overlay_color\";s:0:\"\";s:30:\"post_title_bar_overlay_pattern\";s:4:\"none\";s:38:\"post_title_bar_overlay_pattern_opacity\";s:4:\"0.15\";s:26:\"post_title_bar_color_style\";s:4:\"dark\";s:22:\"post_title_bar_bg_show\";s:0:\"\";s:26:\"post_title_bar_bg_parallax\";s:0:\"\";s:23:\"post_title_bar_bg_color\";s:0:\"\";s:22:\"post_title_bar_bg_size\";s:4:\"auto\";s:23:\"post_title_bar_bg_image\";s:0:\"\";s:27:\"post_title_bar_bg_video_mp4\";s:0:\"\";s:27:\"post_title_bar_bg_video_ogg\";s:0:\"\";s:28:\"post_title_bar_bg_video_webm\";s:0:\"\";s:35:\"post_single_title_show_over_content\";s:1:\"1\";s:27:\"post_single_title_alignment\";s:7:\"default\";s:24:\"post_index_template_type\";s:7:\"default\";s:32:\"blog_archive_show_featured_image\";s:1:\"1\";s:29:\"post_archive_max_width_layout\";s:0:\"\";s:23:\"post_image_aspect_ratio\";s:4:\"0.56\";s:32:\"blog_archive_mask_featured_image\";s:1:\"1\";s:32:\"post_index_column_content_layout\";s:4:\"full\";s:17:\"display_post_info\";s:1:\"1\";s:18:\"post_info_position\";s:11:\"after-title\";s:22:\"display_post_info_date\";s:1:\"1\";s:24:\"display_post_info_author\";s:1:\"1\";s:28:\"display_post_info_categories\";s:1:\"1\";s:26:\"display_post_info_comments\";s:1:\"1\";s:28:\"display_post_comments_number\";s:1:\"1\";s:28:\"blog_display_author_readmore\";s:8:\"readmore\";s:26:\"blog_display_author_header\";s:1:\"1\";s:26:\"blog_display_author_footer\";s:0:\"\";s:24:\"post_index_column_number\";s:1:\"4\";s:31:\"post_index_column_number_tablet\";s:7:\"inherit\";s:31:\"post_index_column_number_mobile\";s:1:\"1\";s:21:\"exclude_without_media\";s:1:\"1\";s:31:\"post_exclude_quote_link_formats\";s:1:\"1\";s:24:\"post_index_loadmore_type\";s:0:\"\";s:25:\"post_index_read_more_text\";s:9:\"Read More\";s:29:\"show_blog_archive_like_button\";s:1:\"1\";s:29:\"post_index_timeline_alignment\";s:6:\"center\";s:27:\"post_index_sidebar_position\";s:13:\"right-sidebar\";s:29:\"post_index_sidebar_decoration\";s:6:\"border\";s:23:\"blog_content_on_listing\";s:4:\"full\";s:30:\"blog_content_on_listing_length\";s:3:\"255\";s:24:\"post_archive_slider_show\";s:1:\"1\";s:24:\"post_archive_slider_type\";s:7:\"default\";s:28:\"post_archive_slider_location\";s:5:\"block\";s:30:\"post_archive_slider_slides_num\";s:2:\"10\";s:27:\"post_archive_slider_exclude\";s:0:\"\";s:27:\"post_archive_slider_include\";s:0:\"\";s:26:\"post_archive_slider_offset\";s:0:\"\";s:28:\"post_archive_slider_order_by\";s:4:\"date\";s:29:\"post_archive_slider_order_dir\";s:4:\"DESC\";s:24:\"post_archive_slider_skin\";s:14:\"aux-light-skin\";s:29:\"post_archive_slider_add_title\";s:1:\"1\";s:28:\"post_archive_slider_add_meta\";s:1:\"1\";s:30:\"post_archive_slider_image_from\";s:4:\"auto\";s:32:\"post_archive_slider_custom_image\";s:0:\"\";s:42:\"post_archive_slider_exclude_without_images\";s:1:\"1\";s:25:\"post_archive_slider_width\";s:3:\"960\";s:26:\"post_archive_slider_height\";s:3:\"560\";s:26:\"post_archive_slider_arrows\";s:0:\"\";s:25:\"post_archive_slider_space\";s:1:\"5\";s:24:\"post_archive_slider_loop\";s:1:\"1\";s:29:\"post_archive_slider_slideshow\";s:0:\"\";s:35:\"post_archive_slider_slideshow_delay\";s:1:\"2\";s:35:\"post_taxonomy_archive_template_type\";s:7:\"default\";s:38:\"post_taxonomy_archive_sidebar_position\";s:13:\"right-sidebar\";s:40:\"post_taxonomy_archive_sidebar_decoration\";s:6:\"border\";s:40:\"post_taxonomy_archive_content_on_listing\";s:4:\"full\";s:39:\"post_taxonomy_archive_on_listing_length\";s:3:\"255\";s:26:\"display_post_taxonomy_info\";s:1:\"1\";s:31:\"display_post_taxonomy_info_date\";s:1:\"1\";s:33:\"display_post_taxonomy_info_author\";s:1:\"1\";s:37:\"display_post_taxonomy_info_categories\";s:1:\"1\";s:35:\"display_post_taxonomy_info_comments\";s:1:\"1\";s:37:\"display_post_taxonomy_widget_comments\";s:1:\"1\";s:37:\"display_post_taxonomy_author_readmore\";s:8:\"readmore\";s:35:\"display_post_taxonomy_author_header\";s:1:\"1\";s:35:\"display_post_taxonomy_author_footer\";s:0:\"\";s:27:\"post_taxonomy_loadmore_type\";s:0:\"\";s:28:\"single_post_title_typography\";s:0:\"\";s:30:\"single_post_content_typography\";s:0:\"\";s:27:\"single_post_info_typography\";s:0:\"\";s:33:\"single_post_info_terms_typography\";s:0:\"\";s:27:\"single_post_meta_typography\";s:0:\"\";s:33:\"single_post_meta_terms_typography\";s:0:\"\";s:31:\"single_post_subtitle_typography\";s:0:\"\";s:33:\"single_post_breadcrumb_typography\";s:0:\"\";s:26:\"blog_page_title_typography\";s:0:\"\";s:25:\"blog_page_info_typography\";s:0:\"\";s:31:\"blog_page_info_terms_typography\";s:0:\"\";s:28:\"blog_page_content_typography\";s:0:\"\";s:27:\"blog_page_button_typography\";s:0:\"\";s:28:\"page_single_sidebar_position\";s:10:\"no-sidebar\";s:30:\"page_single_sidebar_decoration\";s:6:\"border\";s:28:\"page_show_content_top_margin\";b:0;s:21:\"page_max_width_layout\";s:0:\"\";s:19:\"page_content_layout\";s:5:\"boxed\";s:19:\"page_title_bar_show\";b:0;s:21:\"page_title_bar_preset\";s:14:\"normal_title_1\";s:31:\"page_title_bar_enable_customize\";s:0:\"\";s:33:\"page_title_bar_content_width_type\";s:5:\"boxed\";s:37:\"page_title_bar_content_section_height\";s:4:\"auto\";s:29:\"page_title_bar_vertical_align\";s:0:\"\";s:27:\"page_title_bar_scroll_arrow\";s:0:\"\";s:25:\"page_title_bar_title_show\";s:1:\"1\";s:31:\"page_title_bar_heading_bordered\";s:0:\"\";s:28:\"page_title_bar_heading_boxed\";s:0:\"\";s:31:\"page_title_bar_heading_bg_color\";s:0:\"\";s:27:\"page_title_bar_meta_enabled\";s:0:\"\";s:28:\"page_title_bar_bread_enabled\";s:1:\"1\";s:29:\"page_title_bar_bread_bordered\";s:0:\"\";s:30:\"page_title_bar_bread_sep_style\";s:23:\"auxicon-chevron-right-1\";s:25:\"page_title_bar_text_align\";s:4:\"left\";s:28:\"page_title_bar_overlay_color\";s:0:\"\";s:30:\"page_title_bar_overlay_pattern\";s:4:\"none\";s:38:\"page_title_bar_overlay_pattern_opacity\";s:3:\"0.5\";s:26:\"page_title_bar_color_style\";s:4:\"dark\";s:22:\"page_title_bar_bg_show\";s:0:\"\";s:26:\"page_title_bar_bg_parallax\";s:0:\"\";s:23:\"page_title_bar_bg_color\";s:0:\"\";s:22:\"page_title_bar_bg_size\";s:0:\"\";s:23:\"page_title_bar_bg_image\";s:0:\"\";s:27:\"page_title_bar_bg_video_mp4\";s:0:\"\";s:27:\"page_title_bar_bg_video_ogg\";s:0:\"\";s:28:\"page_title_bar_bg_video_webm\";s:0:\"\";s:22:\"page_title__typography\";s:0:\"\";s:25:\"page_subtitle__typography\";s:0:\"\";s:32:\"page_title_breadcrumb_typography\";s:0:\"\";s:37:\"page_title_breadcrumb_link_typography\";s:0:\"\";s:31:\"page_title_breadcrumb_sep_color\";s:0:\"\";s:35:\"site_elementor_footer_edit_template\";s:2:\"69\";s:30:\"site_elementor_footer_template\";s:2:\"69\";s:39:\"site_elementor_footer_templates_library\";s:0:\"\";s:22:\"site_footer_use_legacy\";b:0;s:21:\"site_footer_is_sticky\";b:0;s:9:\"copyright\";s:47:\"&copy; {{Y}} {{sitename}}. All rights reserved.\";s:11:\"attribution\";b:0;s:34:\"footer_privacy_policy_link_display\";s:0:\"\";s:17:\"site_footer_info3\";s:0:\"\";s:37:\"site_subfooter_bar_section_use_legacy\";b:0;s:18:\"show_subfooter_bar\";s:0:\"\";s:20:\"subfooter_bar_layout\";s:20:\"vertical-small-boxed\";s:29:\"subfooter_bar_layout_bg_color\";s:7:\"#fafafa\";s:30:\"subfooter_bar_top_border_color\";s:7:\"#EAEAEA\";s:33:\"site_subfooter_section_use_legacy\";b:0;s:14:\"show_subfooter\";s:0:\"\";s:16:\"subfooter_layout\";s:11:\"1-3_1-3_1-3\";s:25:\"subfooter_layout_bg_color\";s:0:\"\";s:28:\"subfooter_layout_bg_gradient\";s:0:\"\";s:25:\"subfooter_layout_bg_image\";s:0:\"\";s:34:\"subfooter_layout_bg_image_position\";s:13:\"center center\";s:30:\"subfooter_layout_bg_image_size\";s:5:\"cover\";s:32:\"subfooter_layout_bg_image_repeat\";s:9:\"no-repeat\";s:23:\"footer_widget_dark_mode\";s:0:\"\";s:26:\"subfooter_top_border_color\";s:7:\"#EAEAEA\";s:24:\"subfooter_hide_on_tablet\";s:0:\"\";s:23:\"subfooter_hide_on_phone\";s:0:\"\";s:44:\"site_subfooter_appearance_section_use_legacy\";b:0;s:28:\"subfooter_appearance_padding\";s:0:\"\";s:33:\"subfooter_widget_title_typography\";s:0:\"\";s:32:\"subfooter_widget_text_typography\";s:0:\"\";s:32:\"subfooter_widget_link_typography\";s:0:\"\";s:30:\"site_footer_section_use_legacy\";b:0;s:16:\"show_site_footer\";s:1:\"1\";s:29:\"site_footer_components_layout\";s:14:\"footer_preset4\";s:20:\"site_footer_bg_color\";s:7:\"#1A1A1A\";s:23:\"site_footer_bg_gradient\";s:0:\"\";s:23:\"footer_top_border_color\";s:7:\"#EAEAEA\";s:23:\"footer_top_border_width\";s:1:\"1\";s:41:\"site_footer_appearence_section_use_legacy\";b:0;s:27:\"footer_copyright_typography\";s:0:\"\";s:34:\"footer_attribution_link_typography\";s:0:\"\";s:37:\"footer_privacy_policy_link_typography\";s:0:\"\";s:27:\"footer_main_menu_typography\";s:0:\"\";s:17:\"show_goto_top_btn\";s:1:\"1\";s:16:\"goto_top_animate\";s:1:\"1\";s:18:\"goto_top_alignment\";s:5:\"right\";s:33:\"enable_site_image_preload_preview\";s:0:\"\";s:38:\"site_image_prelaod_transition_duration\";s:0:\"\";s:27:\"breadcrumbs_text_max_length\";s:2:\"30\";s:25:\"auxin_user_custom_js_head\";s:0:\"\";s:20:\"auxin_user_custom_js\";s:0:\"\";s:16:\"enable_theme_seo\";s:1:\"1\";s:27:\"auxin_user_google_analytics\";s:0:\"\";s:24:\"auxin_google_map_api_key\";s:0:\"\";s:27:\"auxin_user_google_marketing\";s:0:\"\";s:12:\"custom_logo2\";s:3:\"331\";s:35:\"site_header_btn1_section_use_legacy\";b:0;s:21:\"site_header_show_btn1\";s:0:\"\";s:31:\"site_header_show_btn1_on_tablet\";s:1:\"1\";s:30:\"site_header_show_btn1_on_phone\";s:1:\"1\";s:22:\"site_header_btn1_label\";s:6:\"Button\";s:21:\"site_header_btn1_size\";s:5:\"large\";s:22:\"site_header_btn1_shape\";s:5:\"curve\";s:22:\"site_header_btn1_style\";s:0:\"\";s:27:\"site_header_btn1_typography\";s:0:\"\";s:21:\"site_header_btn1_icon\";s:0:\"\";s:27:\"site_header_btn1_icon_align\";s:7:\"default\";s:27:\"site_header_btn1_color_name\";s:9:\"ball-blue\";s:37:\"site_header_btn1_color_name_on_sticky\";s:9:\"ball-blue\";s:21:\"site_header_btn1_link\";s:1:\"#\";s:23:\"site_header_btn1_target\";s:5:\"_self\";s:35:\"site_header_btn2_section_use_legacy\";b:0;s:21:\"site_header_show_btn2\";s:0:\"\";s:31:\"site_header_show_btn2_on_tablet\";s:1:\"1\";s:30:\"site_header_show_btn2_on_phone\";s:1:\"1\";s:22:\"site_header_btn2_label\";s:6:\"Button\";s:21:\"site_header_btn2_size\";s:5:\"large\";s:22:\"site_header_btn2_shape\";s:5:\"curve\";s:22:\"site_header_btn2_style\";s:7:\"outline\";s:27:\"site_header_btn2_typography\";s:0:\"\";s:21:\"site_header_btn2_icon\";s:0:\"\";s:27:\"site_header_btn2_icon_align\";s:7:\"default\";s:27:\"site_header_btn2_color_name\";s:7:\"emerald\";s:37:\"site_header_btn2_color_name_on_sticky\";s:9:\"ball-blue\";s:21:\"site_header_btn2_link\";s:0:\"\";s:23:\"site_header_btn2_target\";s:5:\"_self\";s:25:\"site_secondary_logo_image\";s:0:\"\";s:30:\"site_secondary_logo_max_height\";s:2:\"50\";s:16:\"auxin_login_skin\";s:7:\"default\";s:19:\"auxin_login_message\";s:0:\"\";s:22:\"auxin_login_logo_image\";s:0:\"\";s:22:\"auxin_login_logo_width\";s:2:\"84\";s:23:\"auxin_login_logo_height\";s:2:\"84\";s:19:\"auxin_login_bg_show\";s:0:\"\";s:20:\"auxin_login_bg_color\";s:0:\"\";s:20:\"auxin_login_bg_image\";s:0:\"\";s:19:\"auxin_login_bg_size\";s:4:\"auto\";s:22:\"auxin_login_bg_pattern\";s:0:\"\";s:21:\"auxin_login_bg_repeat\";s:9:\"no-repeat\";s:23:\"auxin_login_bg_position\";s:8:\"left top\";s:21:\"auxin_login_bg_attach\";s:6:\"scroll\";s:22:\"auxin_login_body_class\";s:0:\"\";s:17:\"auxin_login_style\";s:0:\"\";s:14:\"auxin_404_page\";s:7:\"default\";s:24:\"auxin_maintenance_enable\";s:0:\"\";s:22:\"auxin_maintenance_page\";s:7:\"default\";s:31:\"auxin_search_exclude_post_types\";s:0:\"\";s:29:\"auxin_search_exclude_no_media\";s:0:\"\";s:28:\"auxin_search_pinned_contents\";s:0:\"\";s:23:\"auxin_customizer_export\";s:0:\"\";s:23:\"auxin_customizer_import\";s:0:\"\";s:25:\"portfolio_single_side_pos\";s:5:\"right\";s:26:\"portfolio_max_width_layout\";s:0:\"\";s:34:\"portfolios_overview_info_alignment\";s:7:\"default\";s:27:\"portfolio_single_image_size\";s:12:\"medium_large\";s:39:\"portfolio_single_display_side_info_meta\";b:1;s:33:\"portfolio_single_display_category\";s:0:\"\";s:28:\"portfolio_single_display_tag\";b:0;s:31:\"portfolio_single_sticky_sidebar\";s:0:\"\";s:35:\"show_portfolio_single_next_prev_nav\";b:0;s:40:\"show_portfolio_single_share_like_section\";b:0;s:27:\"show_portfolio_single_share\";s:1:\"1\";s:34:\"portfolio_single_share_button_type\";s:4:\"icon\";s:34:\"portfolio_single_share_button_icon\";s:13:\"auxicon-share\";s:40:\"portfolio_single_share_button_icon_color\";s:0:\"\";s:46:\"portfolio_single_share_button_icon_hover_color\";s:0:\"\";s:39:\"portfolio_single_share_button_icon_size\";s:0:\"\";s:36:\"portfolio_single_share_button_margin\";s:0:\"\";s:26:\"show_portfolio_single_like\";s:1:\"1\";s:33:\"portfolio_single_like_button_type\";s:4:\"icon\";s:32:\"show_portfolio_single_like_label\";s:1:\"1\";s:26:\"portfolio_single_like_icon\";s:15:\"auxicon-heart-2\";s:32:\"portfolio_single_like_icon_color\";s:0:\"\";s:36:\"portfolio_single_not_like_icon_color\";s:0:\"\";s:38:\"portfolio_single_like_icon_hover_color\";s:0:\"\";s:31:\"portfolio_single_like_icon_size\";s:0:\"\";s:28:\"portfolio_single_like_margin\";s:0:\"\";s:35:\"portfolio_single_next_prev_nav_skin\";s:7:\"minimal\";s:31:\"portfolio_single_next_nav_label\";s:14:\"Next Portfolio\";s:31:\"portfolio_single_prev_nav_label\";s:18:\"Previous Portfolio\";s:39:\"portfolio_single_next_prev_nav_btn_link\";s:0:\"\";s:24:\"portfolio_title_bar_show\";s:0:\"\";s:26:\"portfolio_title_bar_preset\";s:14:\"normal_title_1\";s:36:\"portfolio_title_bar_enable_customize\";s:0:\"\";s:38:\"portfolio_title_bar_content_width_type\";s:5:\"boxed\";s:42:\"portfolio_title_bar_content_section_height\";s:4:\"auto\";s:34:\"portfolio_title_bar_vertical_align\";s:0:\"\";s:32:\"portfolio_title_bar_scroll_arrow\";s:0:\"\";s:30:\"portfolio_title_bar_title_show\";s:1:\"1\";s:36:\"portfolio_title_bar_heading_bordered\";s:0:\"\";s:33:\"portfolio_title_bar_heading_boxed\";s:0:\"\";s:36:\"portfolio_title_bar_heading_bg_color\";s:0:\"\";s:32:\"portfolio_title_bar_meta_enabled\";s:0:\"\";s:33:\"portfolio_title_bar_bread_enabled\";s:1:\"1\";s:34:\"portfolio_title_bar_bread_bordered\";s:0:\"\";s:35:\"portfolio_title_bar_bread_sep_style\";s:23:\"auxicon-chevron-right-1\";s:30:\"portfolio_title_bar_text_align\";s:4:\"left\";s:33:\"portfolio_title_bar_overlay_color\";s:0:\"\";s:35:\"portfolio_title_bar_overlay_pattern\";s:4:\"none\";s:43:\"portfolio_title_bar_overlay_pattern_opacity\";s:3:\"0.5\";s:31:\"portfolio_title_bar_color_style\";s:4:\"dark\";s:27:\"portfolio_title_bar_bg_show\";s:0:\"\";s:31:\"portfolio_title_bar_bg_parallax\";s:0:\"\";s:28:\"portfolio_title_bar_bg_color\";s:0:\"\";s:27:\"portfolio_title_bar_bg_size\";s:0:\"\";s:28:\"portfolio_title_bar_bg_image\";s:0:\"\";s:32:\"portfolio_title_bar_bg_video_mp4\";s:0:\"\";s:32:\"portfolio_title_bar_bg_video_ogg\";s:0:\"\";s:33:\"portfolio_title_bar_bg_video_webm\";s:0:\"\";s:28:\"show_portfolio_related_posts\";s:1:\"1\";s:40:\"portfolio_related_posts_title_typography\";s:344:\"{\"typography-hover\":{\"normal\":{\"font-family\":{\"value\":\"none\",\"type\":\" \"},\"color\":\"rgb(25, 25, 25)\",\"font-size-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"font-weight\":\"\",\"text-transform\":\"\",\"font-style\":\"\",\"text-decoration\":\"\",\"line-height-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"letter-spacing-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}}}}}\";s:29:\"portfolio_related_posts_label\";s:22:\"Related Projects/Works\";s:40:\"portfolio_related_posts_label_typography\";s:423:\"{\"typography-hover\":{\"normal\":{\"font-family\":{\"value\":\"none\",\"type\":\" \"},\"color\":\"var(--e-global-color-secondary)\",\"font-size-resp\":{\"768\":{\"value\":22,\"unit\":\"px\"},\"1024\":{\"value\":26,\"unit\":\"px\"},\"desktop\":{\"value\":34,\"unit\":\"px\"}},\"font-weight\":\"\",\"text-transform\":\"\",\"font-style\":\"\",\"text-decoration\":\"\",\"line-height-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"letter-spacing-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}}}}}\";s:36:\"portfolio_related_image_aspect_ratio\";s:4:\"0.56\";s:36:\"portfolio_related_posts_preview_mode\";s:4:\"grid\";s:37:\"portfolio_related_posts_column_number\";s:1:\"3\";s:36:\"portfolio_related_posts_align_center\";s:0:\"\";s:34:\"portfolio_related_posts_full_width\";s:0:\"\";s:34:\"portfolio_related_posts_snap_items\";s:0:\"\";s:42:\"portfolio_related_posts_display_taxonomies\";s:0:\"\";s:40:\"portfolio_related_posts_terms_typography\";s:0:\"\";s:46:\"portfolio_single_all_related_items_btn_display\";s:0:\"\";s:43:\"portfolio_single_all_related_items_url_type\";s:7:\"archive\";s:42:\"portfolio_single_all_related_items_btn_url\";s:0:\"\";s:44:\"portfolio_single_all_related_items_btn_label\";s:19:\"Browse All Projects\";s:41:\"portfolio_related_posts_button_typography\";s:0:\"\";s:33:\"portfolio_related_posts_button_bg\";s:0:\"\";s:34:\"portfolio_show_custom_archive_link\";s:0:\"\";s:29:\"portfolio_custom_archive_link\";s:0:\"\";s:29:\"portfolio_index_template_type\";s:6:\"grid-1\";s:28:\"portfolio_image_aspect_ratio\";s:4:\"0.56\";s:32:\"portfolio_archive_grid_item_type\";s:7:\"classic\";s:32:\"portfolio_archive_tile_item_type\";s:7:\"overlay\";s:28:\"portfolio_archive_grid_space\";s:2:\"30\";s:31:\"portfolio_archive_column_number\";s:1:\"4\";s:34:\"portfolio_archive_max_width_layout\";s:0:\"\";s:38:\"portfolio_archive_column_number_tablet\";s:7:\"inherit\";s:38:\"portfolio_archive_column_number_mobile\";s:1:\"1\";s:34:\"show_portfolio_archive_like_button\";s:1:\"1\";s:31:\"show_portfolio_entry_box_colors\";s:0:\"\";s:44:\"portfolio_classic_entry_box_background_color\";s:7:\"#FFFFFF\";s:40:\"portfolio_classic_entry_box_border_color\";s:7:\"#EAEAEA\";s:41:\"show_portfolio_land_side_entry_box_colors\";s:0:\"\";s:36:\"portfolio_land_side_background_color\";s:7:\"#FFFFFF\";s:32:\"portfolio_land_side_border_color\";s:7:\"#EAEAEA\";s:32:\"portfolio_index_sidebar_position\";s:10:\"no-sidebar\";s:34:\"portfolio_index_sidebar_decoration\";s:6:\"border\";s:31:\"portfolio_archive_items_perpage\";s:2:\"12\";s:34:\"portfolio_archive_titlebar_enabled\";s:1:\"1\";s:45:\"portfolio_archive_titlebar_breadcrumb_enabled\";s:1:\"1\";s:40:\"portfolio_archive_titlebar_title_enabled\";s:1:\"1\";s:40:\"portfolio_archive_titlebar_title_context\";s:0:\"\";s:34:\"portfolio_archive_breadcrumb_label\";s:9:\"Portfolio\";s:32:\"portfolio_taxonomy_template_type\";s:6:\"grid-1\";s:37:\"portfolio_taxonomy_image_aspect_ratio\";s:4:\"0.56\";s:33:\"portfolio_taxonomy_grid_item_type\";s:7:\"classic\";s:33:\"portfolio_taxonomy_tile_item_type\";s:7:\"overlay\";s:29:\"portfolio_taxonomy_grid_space\";s:2:\"30\";s:32:\"portfolio_taxonomy_column_number\";s:1:\"4\";s:39:\"portfolio_taxonomy_column_number_tablet\";s:7:\"inherit\";s:39:\"portfolio_taxonomy_column_number_mobile\";s:1:\"1\";s:35:\"show_portfolio_taxonomy_like_button\";s:1:\"1\";s:35:\"portfolio_taxonomy_sidebar_position\";s:13:\"right-sidebar\";s:45:\"portfolio_taxonomy_archive_sidebar_decoration\";s:6:\"border\";s:31:\"portfolio_metadata_launch_label\";s:14:\"Launch Project\";s:25:\"portfolio_metadata_list_1\";s:176:\"[{\"value\":\"Project URL\",\"label\":\"Project URL\",\"id\":\"url\"},{\"value\":\"Client\",\"label\":\"Client\",\"id\":\"client\"},{\"value\":\"Release Date\",\"label\":\"Release Date\",\"id\":\"release_date\"}]\";s:35:\"single_portfolio_content_typography\";s:34:\"{\"typography-hover\":{\"normal\":{}}}\";s:42:\"single_portfolio_overview_title_typography\";s:394:\"{\"typography-hover\":{\"normal\":{\"font-family\":{\"value\":\"none\",\"type\":\" \"},\"color\":\"var(--e-global-color-secondary)\",\"font-size-resp\":{\"768\":{\"value\":20,\"unit\":\"px\"},\"desktop\":{\"value\":30,\"unit\":\"px\"}},\"font-weight\":\"700\",\"text-transform\":\"\",\"font-style\":\"\",\"text-decoration\":\"\",\"line-height-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"letter-spacing-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}}}}}\";s:44:\"single_portfolio_overview_content_typography\";s:389:\"{\"typography-hover\":{\"normal\":{\"font-family\":{\"value\":\"none\",\"type\":\" \"},\"color\":\"var(--e-global-color-primary)\",\"font-size-resp\":{\"768\":{\"value\":14,\"unit\":\"px\"},\"desktop\":{\"value\":16,\"unit\":\"px\"}},\"font-weight\":\"\",\"text-transform\":\"\",\"font-style\":\"\",\"text-decoration\":\"\",\"line-height-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}},\"letter-spacing-resp\":{\"desktop\":{\"value\":\"\",\"unit\":\"px\"}}}}}\";s:32:\"single_portfolio_meta_typography\";s:34:\"{\"typography-hover\":{\"normal\":{}}}\";s:38:\"single_portfolio_meta_terms_typography\";s:34:\"{\"typography-hover\":{\"normal\":{}}}\";s:37:\"single_portfolio_lunch_btn_typography\";s:0:\"\";s:29:\"single_portfolio_lunch_btn_bg\";s:0:\"\";s:24:\"enable_custom_typography\";s:0:\"\";s:18:\"content_typography\";s:20:\"_gof_Raleway:regular\";s:21:\"main_title_typography\";s:16:\"_gof_Raleway:300\";s:21:\"page_title_typography\";s:16:\"_gof_Raleway:300\";s:22:\"header_menu_typography\";s:20:\"_gof_Raleway:regular\";s:18:\"buttons_typography\";s:20:\"_gof_Raleway:regular\";s:19:\"include_latin_chars\";s:0:\"\";}','yes'),(253,'bdthemes-element-pack_license_notice_hidden','1678531063','yes'),(254,'auxin_faq_capabilities_added','1','no'),(259,'envato_purchase_code_3909293','a:3:{s:8:\"usermail\";s:19:\"sonus90@outlook.com\";s:13:\"purchase_code\";s:36:\"1796077e-de81-46ea-8dc7-f6b701d52905\";s:5:\"token\";s:32:\"542fd2dd8ffdd90f8e22423a9d55459d\";}','no'),(267,'auxin_portfolio_capabilities_added','1','no'),(271,'elementor_cpt_support','a:3:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:9:\"portfolio\";}','yes'),(275,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.5.6\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1646995073;s:7:\"version\";s:5:\"5.5.6\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(279,'wp_ulike_dbVersion','2.3','yes'),(280,'widget_wp_ulike','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(281,'wp_ulike_settings','a:20:{s:22:\"enable_kilobyte_format\";s:0:\"\";s:19:\"enable_toast_notice\";b:1;s:19:\"enable_anonymise_ip\";s:0:\"\";s:20:\"disable_admin_notice\";s:0:\"\";s:20:\"disable_plugin_files\";s:0:\"\";s:26:\"enable_admin_posts_columns\";s:0:\"\";s:11:\"posts_group\";s:0:\"\";s:14:\"comments_group\";s:0:\"\";s:16:\"buddypress_group\";s:0:\"\";s:13:\"bbpress_group\";s:0:\"\";s:18:\"enable_meta_values\";s:0:\"\";s:25:\"enable_deprecated_options\";s:0:\"\";s:25:\"already_registered_notice\";s:35:\"You have already registered a vote.\";s:21:\"login_required_notice\";s:36:\"You Should Login To Submit Your Like\";s:11:\"like_notice\";s:23:\"Thanks! You Liked This.\";s:13:\"unlike_notice\";s:24:\"Sorry! You unliked this.\";s:22:\"like_button_aria_label\";s:11:\"Like Button\";s:10:\"custom_css\";s:0:\"\";s:14:\"custom_spinner\";s:0:\"\";s:24:\"enable_inline_custom_css\";s:0:\"\";}','yes'),(282,'wp_ulike_use_inline_custom_css','1','yes'),(283,'wp_ulike_customize','a:13:{s:19:\"template_typography\";s:0:\"\";s:14:\"template_group\";s:0:\"\";s:16:\"template_padding\";s:0:\"\";s:15:\"template_margin\";s:0:\"\";s:12:\"button_group\";s:0:\"\";s:17:\"button_dimensions\";s:0:\"\";s:14:\"button_padding\";s:0:\"\";s:13:\"button_margin\";s:0:\"\";s:13:\"counter_group\";s:0:\"\";s:15:\"counter_padding\";s:0:\"\";s:14:\"counter_margin\";s:0:\"\";s:16:\"toast_typography\";s:0:\"\";s:11:\"toast_group\";s:0:\"\";}','yes'),(287,'widget_mc4wp_form_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(288,'auxin_demo_options','a:2:{s:6:\"import\";s:8:\"complete\";s:12:\"import-media\";s:2:\"on\";}','no'),(289,'auxin_last_imported_demo','a:3:{s:2:\"id\";s:3:\"231\";s:4:\"time\";s:19:\"2022-03-11 10:38:54\";s:6:\"status\";a:2:{s:6:\"import\";s:8:\"complete\";s:12:\"import-media\";s:2:\"on\";}}','no'),(291,'auxin_demo_media_requests','a:41:{s:73:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/11/Group_111.jpg\";a:2:{s:3:\"url\";s:73:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/11/Group_111.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:25:\"/tmp/Group_111-JnigmG.tmp\";}}s:104:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/tyler-schaefer-bODOLilbwJs-unsplash-1.jpg\";a:2:{s:3:\"url\";s:104:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/tyler-schaefer-bODOLilbwJs-unsplash-1.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:53:\"/tmp/tyler-schaefer-bODOLilbwJs-unsplash-1-kWis6B.tmp\";}}s:80:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/708_2-35060-1.jpg\";a:2:{s:3:\"url\";s:80:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/708_2-35060-1.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:29:\"/tmp/708_2-35060-1-4V4wFF.tmp\";}}s:101:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/connor-wang-MNz7IGrcEl0-unsplash-1.jpg\";a:2:{s:3:\"url\";s:101:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/connor-wang-MNz7IGrcEl0-unsplash-1.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:50:\"/tmp/connor-wang-MNz7IGrcEl0-unsplash-1-zJalzQ.tmp\";}}s:107:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/gilles-desjardins-1rBs-8OyxMo-unsplash-1.jpg\";a:2:{s:3:\"url\";s:107:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/gilles-desjardins-1rBs-8OyxMo-unsplash-1.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:56:\"/tmp/gilles-desjardins-1rBs-8OyxMo-unsplash-1-qgoi6a.tmp\";}}s:101:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/meric-dagli-KgDkiEzx3cA-unsplash-1.jpg\";a:2:{s:3:\"url\";s:101:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/meric-dagli-KgDkiEzx3cA-unsplash-1.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:50:\"/tmp/meric-dagli-KgDkiEzx3cA-unsplash-1-N98bSQ.tmp\";}}s:101:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/jason-leung-poI7DelFiVA-unsplash-1.jpg\";a:2:{s:3:\"url\";s:101:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/jason-leung-poI7DelFiVA-unsplash-1.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:50:\"/tmp/jason-leung-poI7DelFiVA-unsplash-1-R8iRx7.tmp\";}}s:97:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/thai-an-BE6CIwysCvU-unsplash-1.jpg\";a:2:{s:3:\"url\";s:97:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/thai-an-BE6CIwysCvU-unsplash-1.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:46:\"/tmp/thai-an-BE6CIwysCvU-unsplash-1-zPy8TJ.tmp\";}}s:109:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.jpg\";a:2:{s:3:\"url\";s:109:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:58:\"/tmp/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-aNguoB.tmp\";}}s:103:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/volkan-vardar-y7RW7g2izy0-unsplash-1.jpg\";a:2:{s:3:\"url\";s:103:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/volkan-vardar-y7RW7g2izy0-unsplash-1.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:52:\"/tmp/volkan-vardar-y7RW7g2izy0-unsplash-1-0sgoL1.tmp\";}}s:72:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/11/Group_88.png\";a:2:{s:3:\"url\";s:72:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/11/Group_88.png\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:24:\"/tmp/Group_88-HCAA0K.tmp\";}}s:72:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Untitled.png\";a:2:{s:3:\"url\";s:72:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Untitled.png\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:24:\"/tmp/Untitled-O0jjvL.tmp\";}}s:100:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/shunya-koide-lnGrGTmftcY-unsplash.jpg\";a:2:{s:3:\"url\";s:100:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/shunya-koide-lnGrGTmftcY-unsplash.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:49:\"/tmp/shunya-koide-lnGrGTmftcY-unsplash-5SNE5x.tmp\";}}s:121:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/architecture-building-city-of-arts-and-sciences-256150.jpg\";a:2:{s:3:\"url\";s:121:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/architecture-building-city-of-arts-and-sciences-256150.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:70:\"/tmp/architecture-building-city-of-arts-and-sciences-256150-OTWidj.tmp\";}}s:120:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\";a:2:{s:3:\"url\";s:120:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:72:\"/tmp/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-OS9Fq1.tmp\";}}s:113:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Full-body-portrait-of-professional-business-woman.jpg\";a:2:{s:3:\"url\";s:113:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Full-body-portrait-of-professional-business-woman.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:65:\"/tmp/Full-body-portrait-of-professional-business-woman-sJfXLx.tmp\";}}s:114:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\";a:2:{s:3:\"url\";s:114:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:66:\"/tmp/cheerful-young-businesswoman-standing-near-P5A34JE-YLwdGN.tmp\";}}s:84:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Mask-Group-844449@2x.jpg\";a:2:{s:3:\"url\";s:84:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Mask-Group-844449@2x.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:36:\"/tmp/Mask-Group-844449@2x-S3qFxM.tmp\";}}s:122:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/pretty-woman-standing-over-grey-wall-background-4A829TX.jpg\";a:2:{s:3:\"url\";s:122:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/pretty-woman-standing-over-grey-wall-background-4A829TX.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:71:\"/tmp/pretty-woman-standing-over-grey-wall-background-4A829TX-NaxKI0.tmp\";}}s:86:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Mask-Group-84448@2x@2x.jpg\";a:2:{s:3:\"url\";s:86:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Mask-Group-84448@2x@2x.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:38:\"/tmp/Mask-Group-84448@2x@2x-bUK4na.tmp\";}}s:99:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/jason-leung-poI7DelFiVA-unsplash.jpg\";a:2:{s:3:\"url\";s:99:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/jason-leung-poI7DelFiVA-unsplash.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:48:\"/tmp/jason-leung-poI7DelFiVA-unsplash-1VesY0.tmp\";}}s:94:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/bckfwd-oB1EJLokN3E-unsplash.jpg\";a:2:{s:3:\"url\";s:94:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/bckfwd-oB1EJLokN3E-unsplash.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:43:\"/tmp/bckfwd-oB1EJLokN3E-unsplash-l1rnDM.tmp\";}}s:107:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/ricardo-gomez-angel-U_riwEM5piM-unsplash.jpg\";a:2:{s:3:\"url\";s:107:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/ricardo-gomez-angel-U_riwEM5piM-unsplash.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:56:\"/tmp/ricardo-gomez-angel-U_riwEM5piM-unsplash-p36Ssl.tmp\";}}s:95:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/thai-an-BE6CIwysCvU-unsplash.jpg\";a:2:{s:3:\"url\";s:95:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/thai-an-BE6CIwysCvU-unsplash.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:44:\"/tmp/thai-an-BE6CIwysCvU-unsplash-Amfq6Y.tmp\";}}s:75:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/client-7@2x.png\";a:2:{s:3:\"url\";s:75:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/client-7@2x.png\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:27:\"/tmp/client-7@2x-hiaxeX.tmp\";}}s:75:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/client-9@2x.png\";a:2:{s:3:\"url\";s:75:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/client-9@2x.png\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:27:\"/tmp/client-9@2x-s84jhq.tmp\";}}s:75:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/client-4@2x.png\";a:2:{s:3:\"url\";s:75:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/client-4@2x.png\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:27:\"/tmp/client-4@2x-pgIZnB.tmp\";}}s:75:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/client-5@2x.png\";a:2:{s:3:\"url\";s:75:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/client-5@2x.png\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:27:\"/tmp/client-5@2x-ZgytWl.tmp\";}}s:75:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/client-3@2x.png\";a:2:{s:3:\"url\";s:75:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/client-3@2x.png\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:27:\"/tmp/client-3@2x-ZGGNTr.tmp\";}}s:75:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/client-1@2x.png\";a:2:{s:3:\"url\";s:75:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/client-1@2x.png\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:27:\"/tmp/client-1@2x-NCnyVl.tmp\";}}s:113:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.jpg\";a:2:{s:3:\"url\";s:113:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:62:\"/tmp/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash-OiLgxA.tmp\";}}s:100:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/sean-pollock-PhYq704ffdA-unsplash.jpg\";a:2:{s:3:\"url\";s:100:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/sean-pollock-PhYq704ffdA-unsplash.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:49:\"/tmp/sean-pollock-PhYq704ffdA-unsplash-gc00pR.tmp\";}}s:80:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Mask-Group-89@2x.png\";a:2:{s:3:\"url\";s:80:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Mask-Group-89@2x.png\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:32:\"/tmp/Mask-Group-89@2x-C3uaoP.tmp\";}}s:80:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Mask-Group-84@2x.png\";a:2:{s:3:\"url\";s:80:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Mask-Group-84@2x.png\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:32:\"/tmp/Mask-Group-84@2x-640Mgf.tmp\";}}s:77:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Mask-Group-85.png\";a:2:{s:3:\"url\";s:77:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Mask-Group-85.png\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:29:\"/tmp/Mask-Group-85-QE0m8S.tmp\";}}s:97:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/sunyu-kim-q1rwmAmRSBM-unsplash.jpg\";a:2:{s:3:\"url\";s:97:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/sunyu-kim-q1rwmAmRSBM-unsplash.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:46:\"/tmp/sunyu-kim-q1rwmAmRSBM-unsplash-d02Iwv.tmp\";}}s:99:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/connor-wang-MNz7IGrcEl0-unsplash.jpg\";a:2:{s:3:\"url\";s:99:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/connor-wang-MNz7IGrcEl0-unsplash.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:48:\"/tmp/connor-wang-MNz7IGrcEl0-unsplash-VS7QPC.tmp\";}}s:90:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/homeentrance02_03-12361.jpg\";a:2:{s:3:\"url\";s:90:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/homeentrance02_03-12361.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:39:\"/tmp/homeentrance02_03-12361-lXjJGz.tmp\";}}s:98:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/tim-durgan-2P3eh98tY2s-unsplash.jpg\";a:2:{s:3:\"url\";s:98:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/tim-durgan-2P3eh98tY2s-unsplash.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:47:\"/tmp/tim-durgan-2P3eh98tY2s-unsplash-IehhS5.tmp\";}}s:101:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/volkan-vardar-y7RW7g2izy0-unsplash.jpg\";a:2:{s:3:\"url\";s:101:\"https://demo.phlox.pro/wp-content/uploads/sites/231/watermarks/volkan-vardar-y7RW7g2izy0-unsplash.jpg\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:50:\"/tmp/volkan-vardar-y7RW7g2izy0-unsplash-63iHAA.tmp\";}}s:73:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Group-110.png\";a:2:{s:3:\"url\";s:73:\"https://demo.phlox.pro/wp-content/uploads/sites/231/2020/10/Group-110.png\";s:7:\"options\";a:3:{s:7:\"timeout\";i:300;s:6:\"stream\";b:1;s:8:\"filename\";s:25:\"/tmp/Group-110-a6AP0n.tmp\";}}}','no'),(296,'_transient_auxin_category_new_id_of24','4','yes'),(307,'_transient_auxin_category_new_id_of21','5','yes'),(308,'_transient_auxin_category_new_id_of22','6','yes'),(309,'portfolio-cat_children','a:0:{}','yes'),(310,'_transient_auxin_category_new_id_of23','7','yes'),(339,'_transient_auxin_category_new_id_of20','8','yes'),(368,'_transient_auxin_category_new_id_of18','9','yes'),(369,'site_logo','332','yes'),(370,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(371,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(372,'elementor_library_category_children','a:0:{}','yes'),(373,'_elementor_editor_upgrade_notice_dismissed','1646995442','yes'),(375,'elementor_controls_usage','a:4:{s:7:\"section\";a:4:{s:15:\"aux_testimonial\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:16:\"template_section\";a:3:{s:8:\"template\";i:3;s:12:\"customer_img\";i:3;s:17:\"customer_img_size\";i:3;}s:15:\"content_section\";a:3:{s:5:\"title\";i:3;s:8:\"subtitle\";i:3;s:7:\"content\";i:3;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:28:\"title_typography_font_family\";i:3;s:26:\"title_typography_font_size\";i:3;s:33:\"title_typography_font_size_tablet\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;s:12:\"title_margin\";i:3;}s:22:\"subtitle_style_section\";a:6:{s:14:\"subtitle_color\";i:3;s:30:\"subtitle_typography_typography\";i:3;s:31:\"subtitle_typography_font_family\";i:3;s:29:\"subtitle_typography_font_size\";i:3;s:36:\"subtitle_typography_font_size_tablet\";i:3;s:31:\"subtitle_typography_font_weight\";i:3;}s:20:\"review_style_section\";a:7:{s:13:\"content_color\";i:3;s:29:\"content_typography_typography\";i:3;s:30:\"content_typography_font_family\";i:3;s:28:\"content_typography_font_size\";i:3;s:35:\"content_typography_font_size_tablet\";i:3;s:30:\"content_typography_font_weight\";i:3;s:15:\"content_padding\";i:3;}s:17:\"box_style_section\";a:4:{s:11:\"box_padding\";i:3;s:24:\"box_backgound_background\";i:3;s:26:\"box_shadow_box_shadow_type\";i:3;s:21:\"box_shadow_box_shadow\";i:3;}}s:8:\"advanced\";a:1:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}}}}s:14:\"aux_simple_svg\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"svg_image_section\";a:2:{s:4:\"type\";i:3;s:6:\"inline\";i:3;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:2:{s:9:\"_position\";i:3;s:9:\"_offset_y\";i:3;}}s:5:\"style\";a:1:{s:17:\"svg_style_section\";a:1:{s:6:\"_width\";i:3;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:0:{}}}s:6:\"footer\";a:7:{s:18:\"aux_modern_heading\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"title_section\";a:2:{s:5:\"title\";i:5;s:7:\"divider\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:2:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:12:\"title_margin\";i:4;}s:25:\"description_style_section\";a:4:{s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:39:\"description_typography_font_size_mobile\";i:3;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:5;s:19:\"aux_animation_delay\";i:3;}}}}s:17:\"aux_modern_button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:4:{s:24:\"btn_bg_normal_background\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:33:\"text_normal_typo_font_size_mobile\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:33:\"aux_core_common_inview_transition\";a:2:{s:18:\"aux_animation_name\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:5:\"align\";i:2;s:19:\"_inline_size_tablet\";i:4;s:12:\"align_mobile\";i:1;s:12:\"_inline_size\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:1;s:13:\"margin_tablet\";i:4;s:14:\"padding_mobile\";i:4;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:1:{s:20:\"aux_animation_easing\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:5:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:4;s:7:\"z_index\";i:1;s:7:\"padding\";i:2;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:13:\"aux_icon_list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:1;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:3:{s:9:\"direction\";i:1;s:18:\"list_column_gutter\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:18:\"list_style_section\";a:1:{s:9:\"connector\";i:1;}s:18:\"text_style_section\";a:5:{s:27:\"text1_typography_typography\";i:1;s:26:\"text1_typography_font_size\";i:1;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:1;s:33:\"text1_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_logo\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_mobile\";i:1;}}s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:12:\"align_mobile\";i:1;s:9:\"logo_type\";i:1;}}}}s:13:\"aux_copyright\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:14:\"copyright_text\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_copyright\";a:5:{s:15:\"copyright_color\";i:1;s:25:\"copyright_typo_typography\";i:1;s:24:\"copyright_typo_font_size\";i:1;s:26:\"copyright_typo_font_weight\";i:1;s:31:\"copyright_typo_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;s:21:\"_element_width_mobile\";i:1;}}}}}s:7:\"wp-page\";a:16:{s:18:\"aux_modern_heading\";a:2:{s:5:\"count\";i:37;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:37;s:9:\"title_tag\";i:12;s:16:\"alignment_tablet\";i:6;s:7:\"divider\";i:27;s:9:\"alignment\";i:11;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:11;s:25:\"title_secondary_highlight\";i:18;s:19:\"title_tag_secondary\";i:2;s:21:\"title_secondary_after\";i:6;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:21;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:17:{s:27:\"title_typography_typography\";i:31;s:28:\"title_typography_font_family\";i:31;s:26:\"title_typography_font_size\";i:31;s:28:\"title_typography_font_weight\";i:31;s:31:\"title_typography_text_transform\";i:21;s:31:\"title_typography_letter_spacing\";i:10;s:11:\"title_color\";i:20;s:12:\"title_margin\";i:31;s:33:\"title_typography_font_size_tablet\";i:33;s:33:\"title_typography_font_size_mobile\";i:9;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:16:{s:28:\"title2_typography_typography\";i:14;s:29:\"title2_typography_font_family\";i:14;s:27:\"title2_typography_font_size\";i:15;s:29:\"title2_typography_font_weight\";i:14;s:29:\"title2_typography_line_height\";i:13;s:12:\"title2_color\";i:13;s:34:\"title2_typography_font_size_tablet\";i:14;s:34:\"title2_typography_font_size_mobile\";i:15;s:19:\"title2_width_mobile\";i:12;s:12:\"title2_width\";i:6;s:19:\"title2_width_tablet\";i:3;s:32:\"title2_typography_text_transform\";i:2;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:2;s:20:\"title2_margin_mobile\";i:2;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:11:{s:40:\"title2_highlighted_typography_typography\";i:19;s:41:\"title2_highlighted_typography_font_family\";i:15;s:39:\"title2_highlighted_typography_font_size\";i:18;s:41:\"title2_highlighted_typography_font_weight\";i:19;s:24:\"title2_highlighted_color\";i:17;s:46:\"title2_highlighted_typography_font_size_tablet\";i:19;s:46:\"title2_highlighted_typography_font_size_mobile\";i:16;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;s:44:\"title2_highlighted_typography_text_transform\";i:6;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:10;s:13:\"divider_width\";i:10;s:14:\"divider_margin\";i:10;s:13:\"divider_color\";i:10;}s:25:\"description_style_section\";a:9:{s:17:\"description_color\";i:17;s:33:\"description_typography_typography\";i:23;s:34:\"description_typography_font_family\";i:22;s:32:\"description_typography_font_size\";i:23;s:34:\"description_typography_font_weight\";i:23;s:39:\"description_typography_font_size_tablet\";i:26;s:17:\"description_width\";i:10;s:39:\"description_typography_font_size_mobile\";i:2;s:24:\"description_width_tablet\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:7:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:26;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:26;s:22:\"aux_animation_duration\";i:28;s:20:\"aux_animation_easing\";i:28;s:19:\"aux_animation_delay\";i:17;}s:14:\"_section_style\";a:7:{s:14:\"_margin_tablet\";i:10;s:7:\"_margin\";i:12;s:8:\"_z_index\";i:2;s:8:\"_padding\";i:6;s:15:\"_padding_tablet\";i:3;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:12:{s:17:\"aux_position_type\";i:6;s:18:\"aux_position_right\";i:4;s:23:\"aux_position_top_mobile\";i:5;s:25:\"aux_position_right_mobile\";i:3;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:2;s:24:\"aux_position_left_tablet\";i:3;s:24:\"aux_position_left_mobile\";i:4;s:16:\"aux_position_top\";i:4;s:25:\"aux_position_right_tablet\";i:3;s:23:\"aux_position_top_tablet\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:11;s:23:\"_element_vertical_align\";i:6;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:6;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:16:\"aux_contact_form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"contact_section\";a:2:{s:4:\"type\";i:1;s:13:\"cf7_shortcode\";i:1;}}s:5:\"style\";a:5:{s:21:\"general_input_section\";a:5:{s:21:\"general_input_padding\";i:1;s:20:\"general_input_margin\";i:1;s:27:\"general_input_border_border\";i:1;s:26:\"general_input_border_width\";i:1;s:26:\"general_input_border_color\";i:1;}s:19:\"placeholder_section\";a:8:{s:33:\"placeholder_typography_typography\";i:1;s:34:\"placeholder_typography_font_family\";i:1;s:32:\"placeholder_typography_font_size\";i:1;s:39:\"placeholder_typography_font_size_mobile\";i:1;s:34:\"placeholder_typography_font_weight\";i:1;s:37:\"placeholder_typography_text_transform\";i:1;s:33:\"placeholder_typography_font_style\";i:1;s:17:\"placeholder_color\";i:1;}s:16:\"textarea_section\";a:5:{s:16:\"textarea_padding\";i:1;s:15:\"textarea_margin\";i:1;s:22:\"textarea_border_border\";i:1;s:21:\"textarea_border_width\";i:1;s:21:\"textarea_border_color\";i:1;}s:28:\"textarea_placeholder_section\";a:8:{s:42:\"textarea_placeholder_typography_typography\";i:1;s:43:\"textarea_placeholder_typography_font_family\";i:1;s:41:\"textarea_placeholder_typography_font_size\";i:1;s:48:\"textarea_placeholder_typography_font_size_mobile\";i:1;s:43:\"textarea_placeholder_typography_font_weight\";i:1;s:46:\"textarea_placeholder_typography_text_transform\";i:1;s:42:\"textarea_placeholder_typography_font_style\";i:1;s:26:\"textarea_placeholder_color\";i:1;}s:20:\"submit_input_section\";a:12:{s:34:\"submit_input_typography_typography\";i:1;s:33:\"submit_input_typography_font_size\";i:1;s:40:\"submit_input_typography_font_size_mobile\";i:1;s:35:\"submit_input_typography_font_weight\";i:1;s:38:\"submit_input_typography_text_transform\";i:1;s:18:\"submit_input_color\";i:1;s:20:\"submit_input_padding\";i:1;s:27:\"submit_input_padding_mobile\";i:1;s:34:\"submit_input_background_background\";i:1;s:29:\"submit_input_background_color\";i:1;s:40:\"submit_input_background_hover_background\";i:1;s:35:\"submit_input_background_hover_color\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:69;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:16:\"content_position\";i:6;s:19:\"_inline_size_tablet\";i:23;s:12:\"align_tablet\";i:4;s:5:\"align\";i:9;s:12:\"_inline_size\";i:6;s:19:\"_inline_size_mobile\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:21;s:6:\"margin\";i:26;s:13:\"margin_tablet\";i:32;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:14;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:8:\"aux_gmap\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:11:\"map_section\";a:3:{s:8:\"latitude\";i:1;s:9:\"longitude\";i:1;s:9:\"attach_id\";i:1;}}s:5:\"style\";a:1:{s:15:\"general_section\";a:4:{s:6:\"height\";i:1;s:5:\"style\";i:1;s:16:\"show_mapcontrols\";i:1;s:4:\"zoom\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:36;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:3:\"gap\";i:36;s:6:\"layout\";i:8;s:8:\"overflow\";i:1;s:16:\"content_position\";i:15;s:13:\"content_width\";i:3;s:13:\"custom_height\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:20;}}s:8:\"advanced\";a:4:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:30;s:7:\"padding\";i:20;s:14:\"padding_mobile\";i:1;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:4;s:14:\"padding_tablet\";i:3;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_mobile\";i:2;s:20:\"reverse_order_tablet\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:2;s:16:\"background_image\";i:2;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:18:\"background_color_b\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}}}}s:8:\"aux_text\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:12;s:7:\"content\";i:12;}s:14:\"button_section\";a:4:{s:9:\"btn_label\";i:11;s:17:\"aux_text_btn_icon\";i:10;s:8:\"btn_link\";i:1;s:14:\"display_button\";i:1;}s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:11;s:10:\"svg_inline\";i:10;s:5:\"image\";i:1;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:11;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:11;s:10:\"icon_color\";i:10;}s:19:\"title_style_section\";a:10:{s:11:\"title_color\";i:12;s:27:\"title_typography_typography\";i:12;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:12;s:33:\"title_typography_font_size_tablet\";i:12;s:28:\"title_typography_font_weight\";i:12;s:19:\"title_margin_bottom\";i:12;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:31:\"title_typography_letter_spacing\";i:1;}s:21:\"content_style_section\";a:11:{s:13:\"content_color\";i:12;s:19:\"content_hover_color\";i:10;s:29:\"content_typography_typography\";i:12;s:30:\"content_typography_font_family\";i:11;s:28:\"content_typography_font_size\";i:12;s:35:\"content_typography_font_size_tablet\";i:12;s:30:\"content_typography_font_weight\";i:12;s:30:\"content_typography_line_height\";i:10;s:15:\"content_padding\";i:12;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:18:{s:28:\"button_background_background\";i:10;s:23:\"button_background_color\";i:10;s:34:\"hover_button_background_background\";i:11;s:29:\"hover_button_background_color\";i:10;s:13:\"btn_icon_size\";i:10;s:17:\"button_icon_color\";i:10;s:23:\"hover_button_icon_color\";i:10;s:10:\"btn_border\";i:11;s:14:\"button_padding\";i:11;s:21:\"button_padding_tablet\";i:11;s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:11;s:23:\"wrapper_content_padding\";i:12;s:30:\"wrapper_content_padding_tablet\";i:11;s:44:\"wrapper_content_background_normal_background\";i:12;s:39:\"wrapper_content_background_normal_color\";i:12;s:38:\"wrapper_content_background_hover_color\";i:10;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:8;s:7:\"_margin\";i:10;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:12;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:10;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:24:\"aux_position_type_mobile\";i:2;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:2;s:29:\"aux_parallax_animation_easing\";i:2;}}}}s:17:\"aux_modern_button\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:7;s:9:\"btn_align\";i:2;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:7;s:18:\"btn_padding_normal\";i:7;s:25:\"btn_padding_normal_tablet\";i:7;s:23:\"btn_bg_hover_background\";i:7;s:19:\"btn_bg_normal_color\";i:7;s:18:\"btn_bg_hover_color\";i:7;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:7;s:26:\"text_normal_typo_font_size\";i:7;s:17:\"text_normal_color\";i:7;s:28:\"text_normal_typo_font_family\";i:7;s:33:\"text_normal_typo_font_size_tablet\";i:5;s:28:\"text_normal_typo_font_weight\";i:7;s:31:\"text_normal_typo_text_transform\";i:7;s:31:\"text_normal_typo_letter_spacing\";i:2;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:5;s:19:\"aux_animation_delay\";i:5;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:9:\"aux_image\";a:2:{s:5:\"count\";i:16;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:16;s:10:\"image_size\";i:16;}}s:8:\"advanced\";a:7:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:16;s:22:\"aux_animation_duration\";i:10;s:20:\"aux_animation_easing\";i:16;s:19:\"aux_animation_delay\";i:9;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:4;}s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:26:\"aux_recent_portfolios_grid\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"settings\";a:2:{s:15:\"filters_section\";a:1:{s:12:\"show_filters\";i:1;}s:16:\"paginate_section\";a:1:{s:7:\"perpage\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:8:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:27:\"info_typography_font_family\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:16:\"aux_simple_shape\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:5;s:6:\"_width\";i:5;s:13:\"_width_tablet\";i:4;s:13:\"_width_mobile\";i:2;s:7:\"_height\";i:5;s:14:\"_height_tablet\";i:4;s:14:\"_height_mobile\";i:2;s:27:\"shape_background_background\";i:5;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:5;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:5;s:16:\"aux_position_top\";i:3;s:18:\"aux_position_right\";i:3;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:2;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:3;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"aux_staff\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:13:\"aux_icon_list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}s:6:\"header\";a:5:{s:8:\"aux_logo\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:22:\"aux_core_general_extra\";a:1:{s:9:\"flex_grow\";i:1;}s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:12:\"width_tablet\";i:1;s:12:\"width_mobile\";i:1;}}}}s:18:\"aux_modern_heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:9:\"title_tag\";i:1;s:7:\"divider\";i:1;}}s:5:\"style\";a:1:{s:19:\"title_style_section\";a:4:{s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:12:\"aux_menu_box\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:7:\"general\";a:2:{s:4:\"type\";i:1;s:9:\"indicator\";i:1;}s:19:\"mobile_menu_section\";a:1:{s:20:\"burger_menu_location\";i:1;}}s:5:\"style\";a:4:{s:17:\"menu_item_section\";a:3:{s:24:\"menu_item_typo_font_size\";i:1;s:26:\"menu_item_typo_font_weight\";i:1;s:29:\"menu_item_typo_text_transform\";i:1;}s:14:\"burger_section\";a:1:{s:16:\"burger_btn_style\";i:1;}s:15:\"fullscr_section\";a:8:{s:33:\"fullscr_menu_item_typo_typography\";i:1;s:32:\"fullscr_menu_item_typo_font_size\";i:1;s:39:\"fullscr_menu_item_typo_font_size_tablet\";i:1;s:34:\"fullscr_menu_item_typo_font_weight\";i:1;s:37:\"fullscr_menu_item_typo_text_transform\";i:1;s:20:\"fullscr_item_padding\";i:1;s:34:\"fullscr_menu_item_typo_font_family\";i:1;s:39:\"fullscr_menu_item_typo_font_size_mobile\";i:1;}s:14:\"fullscr_window\";a:4:{s:21:\"fullscr_bg_background\";i:1;s:16:\"fullscr_bg_image\";i:1;s:19:\"fullscr_bg_position\";i:1;s:17:\"fullscr_bg_repeat\";i:1;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:7:\"section\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}}}','yes'),(377,'woocommerce_shop_page_id','0','yes'),(378,'woocommerce_cart_page_id','0','yes'),(379,'woocommerce_checkout_page_id','0','yes'),(380,'woocommerce_myaccount_page_id','0','yes'),(381,'woocommerce_terms_page_id','0','yes'),(382,'woosuite_variation_swatches_option','a:3:{s:7:\"general\";a:18:{s:21:\"enable-color-swatches\";s:1:\"0\";s:30:\"color-swatches-attribute-brand\";s:1:\"0\";s:30:\"color-swatches-attribute-color\";s:1:\"0\";s:31:\"color-swatches-attribute-colors\";s:1:\"0\";s:29:\"color-swatches-attribute-size\";s:1:\"0\";s:21:\"enable-image-swatches\";s:1:\"0\";s:30:\"image-swatches-attribute-brand\";s:1:\"0\";s:30:\"image-swatches-attribute-color\";s:1:\"0\";s:31:\"image-swatches-attribute-colors\";s:1:\"0\";s:29:\"image-swatches-attribute-size\";s:1:\"0\";s:17:\"dropdown-to-label\";s:1:\"0\";s:33:\"dropdown-to-label-attribute-brand\";s:1:\"0\";s:33:\"dropdown-to-label-attribute-color\";s:1:\"0\";s:34:\"dropdown-to-label-attribute-colors\";s:1:\"0\";s:32:\"dropdown-to-label-attribute-size\";s:1:\"0\";s:12:\"swatch-shape\";s:6:\"circle\";s:25:\"disable-plugin-stylesheet\";s:1:\"1\";s:14:\"enable-tooltip\";s:1:\"1\";}s:6:\"design\";a:3:{s:13:\"productDesign\";a:23:{s:9:\"item-font\";s:1:\"0\";s:14:\"text-font-size\";s:2:\"12\";s:19:\"item-font-size-type\";s:2:\"px\";s:7:\"mar-top\";s:1:\"0\";s:9:\"mar-right\";s:2:\"15\";s:10:\"mar-bottom\";s:2:\"15\";s:8:\"mar-left\";s:1:\"0\";s:8:\"mar-type\";s:2:\"px\";s:7:\"pad-top\";s:1:\"0\";s:9:\"pad-right\";s:1:\"0\";s:10:\"pad-bottom\";s:1:\"0\";s:8:\"pad-left\";s:1:\"0\";s:8:\"pad-type\";s:2:\"px\";s:7:\"wrm-top\";s:1:\"0\";s:9:\"wrm-right\";s:2:\"15\";s:10:\"wrm-bottom\";s:2:\"15\";s:8:\"wrm-left\";s:1:\"0\";s:8:\"wrm-type\";s:2:\"px\";s:7:\"wrp-top\";s:1:\"0\";s:9:\"wrp-right\";s:1:\"0\";s:10:\"wrp-bottom\";s:1:\"0\";s:8:\"wrp-left\";s:1:\"0\";s:8:\"wrp-type\";s:2:\"px\";}s:10:\"shopDesign\";a:23:{s:9:\"item-font\";s:1:\"0\";s:14:\"text-font-size\";s:2:\"12\";s:19:\"item-font-size-type\";s:2:\"px\";s:7:\"mar-top\";s:1:\"0\";s:9:\"mar-right\";s:2:\"15\";s:10:\"mar-bottom\";s:2:\"15\";s:8:\"mar-left\";s:1:\"0\";s:8:\"mar-type\";s:2:\"px\";s:7:\"pad-top\";s:1:\"0\";s:9:\"pad-right\";s:1:\"0\";s:10:\"pad-bottom\";s:1:\"0\";s:8:\"pad-left\";s:1:\"0\";s:8:\"pad-type\";s:2:\"px\";s:7:\"wrm-top\";s:1:\"0\";s:9:\"wrm-right\";s:2:\"15\";s:10:\"wrm-bottom\";s:2:\"15\";s:8:\"wrm-left\";s:1:\"0\";s:8:\"wrm-type\";s:2:\"px\";s:7:\"wrp-top\";s:1:\"0\";s:9:\"wrp-right\";s:1:\"0\";s:10:\"wrp-bottom\";s:1:\"0\";s:8:\"wrp-left\";s:1:\"0\";s:8:\"wrp-type\";s:2:\"px\";}s:13:\"toolTipDesign\";a:6:{s:9:\"item-font\";s:1:\"0\";s:14:\"text-font-size\";s:2:\"12\";s:19:\"item-font-size-type\";s:2:\"px\";s:5:\"width\";s:0:\"\";s:9:\"max-width\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}}s:7:\"archive\";a:3:{s:11:\"show-swatch\";s:1:\"0\";s:15:\"show-clear-link\";s:1:\"0\";s:16:\"swatch-alignment\";s:4:\"left\";}}','yes'),(383,'auxin_demo_importer_menu_origin_id_19','10','no'),(384,'_transient_auxin_menu_item_old_parent_id_41','77','yes'),(385,'_transient_auxin_menu_item_old_parent_id_42','78','yes'),(386,'_transient_auxin_menu_item_old_parent_id_43','79','yes'),(387,'_transient_auxin_menu_item_old_parent_id_44','80','yes'),(388,'_transient_auxin_menu_item_old_parent_id_45','81','yes'),(389,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(390,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(396,'mc4wp_version','4.8.7','yes'),(397,'mc4wp_flash_messages','a:0:{}','no'),(398,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(399,'category_children','a:0:{}','yes'),(468,'aux_isotope_group_templates_kit','section','yes'),(477,'elementor_log','a:1:{s:32:\"c7269842bf9ee27e9414e309bdf4f066\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:133:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/plugins/elementor/includes/template-library/sources/remote.php\";s:7:\"\0*\0line\";i:231;s:7:\"\0*\0date\";s:19:\"2022-03-11 10:54:13\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:29:\"Undefined index: access_level\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2022-03-11 10:54:13\";i:1;s:19:\"2022-03-11 12:18:11\";i:2;s:19:\"2022-03-11 12:18:13\";i:3;s:19:\"2022-03-11 12:29:38\";i:4;s:19:\"2022-03-11 12:40:31\";i:5;s:19:\"2022-03-11 12:53:53\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:29:\"Undefined index: access_level\";s:4:\"file\";s:133:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/plugins/elementor/includes/template-library/sources/remote.php\";s:4:\"line\";i:231;s:5:\"trace\";b:1;}}}','no'),(658,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":4,\"critical\":0}','yes'),(1226,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(1694,'auxin_product_capabilities_added','1','no'),(2082,'_elementor_global_css','a:7:{s:4:\"time\";i:1647608353;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','yes'),(2232,'theme_mods_phlox-pro','a:4:{s:12:\"initial_date\";s:19:\"2022-03-21 06:56:23\";s:15:\"initial_version\";s:5:\"5.7.3\";s:18:\"custom_css_post_id\";i:54;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1647845836;s:4:\"data\";a:11:{s:40:\"auxin-global-primary-sidebar-widget-area\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:42:\"auxin-global-secondary-sidebar-widget-area\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:39:\"auxin-pages-primary-sidebar-widget-area\";a:0:{}s:41:\"auxin-pages-secondary-sidebar-widget-area\";a:0:{}s:38:\"auxin-blog-primary-sidebar-widget-area\";a:0:{}s:40:\"auxin-blog-secondary-sidebar-widget-area\";a:0:{}s:32:\"auxin-search-sidebar-widget-area\";a:0:{}s:31:\"auxin-subfooter-bar-widget-area\";a:0:{}s:33:\"auxin-footer1-sidebar-widget-area\";a:0:{}s:33:\"auxin-footer2-sidebar-widget-area\";a:0:{}s:33:\"auxin-footer3-sidebar-widget-area\";a:0:{}}}}','yes'),(2353,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.3.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-5.9.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.3\";s:7:\"version\";s:5:\"5.9.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1652993650;s:15:\"version_checked\";s:5:\"5.9.3\";s:12:\"translations\";a:0:{}}','no'),(2466,'_site_transient_timeout_auxin_font_icons_list_fontastic','1653161819','no'),(2467,'_site_transient_auxin_font_icons_list_fontastic','a:956:{i:0;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"2 arrows\";s:9:\"classname\";s:17:\".auxicon-2-arrows\";s:7:\"content\";s:3:\"\\61\";}i:1;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"4 arrows\";s:9:\"classname\";s:17:\".auxicon-4-arrows\";s:7:\"content\";s:3:\"\\62\";}i:2;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Back\";s:9:\"classname\";s:13:\".auxicon-back\";s:7:\"content\";s:3:\"\\63\";}i:3;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Back pack\";s:9:\"classname\";s:18:\".auxicon-back-pack\";s:7:\"content\";s:3:\"\\64\";}i:4;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Basket 1\";s:9:\"classname\";s:17:\".auxicon-basket-1\";s:7:\"content\";s:3:\"\\65\";}i:5;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Basket 2\";s:9:\"classname\";s:17:\".auxicon-basket-2\";s:7:\"content\";s:3:\"\\66\";}i:6;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Big candy\";s:9:\"classname\";s:18:\".auxicon-big-candy\";s:7:\"content\";s:3:\"\\67\";}i:7;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Bottle\";s:9:\"classname\";s:15:\".auxicon-bottle\";s:7:\"content\";s:3:\"\\68\";}i:8;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Bow tie\";s:9:\"classname\";s:16:\".auxicon-bow-tie\";s:7:\"content\";s:3:\"\\69\";}i:9;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Box 1\";s:9:\"classname\";s:14:\".auxicon-box-1\";s:7:\"content\";s:3:\"\\6a\";}i:10;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Box 2\";s:9:\"classname\";s:14:\".auxicon-box-2\";s:7:\"content\";s:3:\"\\6b\";}i:11;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Box open\";s:9:\"classname\";s:17:\".auxicon-box-open\";s:7:\"content\";s:3:\"\\6c\";}i:12;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Candy\";s:9:\"classname\";s:14:\".auxicon-candy\";s:7:\"content\";s:3:\"\\6d\";}i:13;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Cd cover\";s:9:\"classname\";s:17:\".auxicon-cd-cover\";s:7:\"content\";s:3:\"\\6e\";}i:14;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Chopsticks\";s:9:\"classname\";s:19:\".auxicon-chopsticks\";s:7:\"content\";s:3:\"\\6f\";}i:15;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Cloud\";s:9:\"classname\";s:14:\".auxicon-cloud\";s:7:\"content\";s:3:\"\\70\";}i:16;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Cloud down\";s:9:\"classname\";s:19:\".auxicon-cloud-down\";s:7:\"content\";s:3:\"\\71\";}i:17;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Cloud up\";s:9:\"classname\";s:17:\".auxicon-cloud-up\";s:7:\"content\";s:3:\"\\72\";}i:18;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Cloud v 1\";s:9:\"classname\";s:18:\".auxicon-cloud-v-1\";s:7:\"content\";s:3:\"\\73\";}i:19;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Cloud v 2\";s:9:\"classname\";s:18:\".auxicon-cloud-v-2\";s:7:\"content\";s:3:\"\\74\";}i:20;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Cloud x 1\";s:9:\"classname\";s:18:\".auxicon-cloud-x-1\";s:7:\"content\";s:3:\"\\75\";}i:21;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Cloud x 2\";s:9:\"classname\";s:18:\".auxicon-cloud-x-2\";s:7:\"content\";s:3:\"\\76\";}i:22;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Cofee cup 1\";s:9:\"classname\";s:20:\".auxicon-cofee-cup-1\";s:7:\"content\";s:3:\"\\77\";}i:23;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Cofee cup 2\";s:9:\"classname\";s:20:\".auxicon-cofee-cup-2\";s:7:\"content\";s:3:\"\\78\";}i:24;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Credit card 1\";s:9:\"classname\";s:22:\".auxicon-credit-card-1\";s:7:\"content\";s:3:\"\\79\";}i:25;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Credit card 2\";s:9:\"classname\";s:22:\".auxicon-credit-card-2\";s:7:\"content\";s:3:\"\\7a\";}i:26;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Credit card 3\";s:9:\"classname\";s:22:\".auxicon-credit-card-3\";s:7:\"content\";s:3:\"\\41\";}i:27;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Credit card 4\";s:9:\"classname\";s:22:\".auxicon-credit-card-4\";s:7:\"content\";s:3:\"\\42\";}i:28;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Cup 1\";s:9:\"classname\";s:14:\".auxicon-cup-1\";s:7:\"content\";s:3:\"\\43\";}i:29;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Cup 2\";s:9:\"classname\";s:14:\".auxicon-cup-2\";s:7:\"content\";s:3:\"\\44\";}i:30;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Diamond\";s:9:\"classname\";s:16:\".auxicon-diamond\";s:7:\"content\";s:3:\"\\45\";}i:31;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Dollar\";s:9:\"classname\";s:15:\".auxicon-dollar\";s:7:\"content\";s:3:\"\\46\";}i:32;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Dollar bill\";s:9:\"classname\";s:20:\".auxicon-dollar-bill\";s:7:\"content\";s:3:\"\\47\";}i:33;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Dollar coin\";s:9:\"classname\";s:20:\".auxicon-dollar-coin\";s:7:\"content\";s:3:\"\\48\";}i:34;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Download\";s:9:\"classname\";s:17:\".auxicon-download\";s:7:\"content\";s:3:\"\\49\";}i:35;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Euro\";s:9:\"classname\";s:13:\".auxicon-euro\";s:7:\"content\";s:3:\"\\4a\";}i:36;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Euro coin\";s:9:\"classname\";s:18:\".auxicon-euro-coin\";s:7:\"content\";s:3:\"\\4b\";}i:37;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Folder\";s:9:\"classname\";s:15:\".auxicon-folder\";s:7:\"content\";s:3:\"\\4c\";}i:38;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Folder plus\";s:9:\"classname\";s:20:\".auxicon-folder-plus\";s:7:\"content\";s:3:\"\\4d\";}i:39;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Folder v\";s:9:\"classname\";s:17:\".auxicon-folder-v\";s:7:\"content\";s:3:\"\\4e\";}i:40;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Folder x\";s:9:\"classname\";s:17:\".auxicon-folder-x\";s:7:\"content\";s:3:\"\\4f\";}i:41;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Forward\";s:9:\"classname\";s:16:\".auxicon-forward\";s:7:\"content\";s:3:\"\\50\";}i:42;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Glass of water\";s:9:\"classname\";s:23:\".auxicon-glass-of-water\";s:7:\"content\";s:3:\"\\51\";}i:43;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Hamburger\";s:9:\"classname\";s:18:\".auxicon-hamburger\";s:7:\"content\";s:3:\"\\52\";}i:44;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Headphones\";s:9:\"classname\";s:19:\".auxicon-headphones\";s:7:\"content\";s:3:\"\\53\";}i:45;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Headset\";s:9:\"classname\";s:16:\".auxicon-headset\";s:7:\"content\";s:3:\"\\54\";}i:46;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Highlighter\";s:9:\"classname\";s:20:\".auxicon-highlighter\";s:7:\"content\";s:3:\"\\56\";}i:47;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Hot dog\";s:9:\"classname\";s:16:\".auxicon-hot-dog\";s:7:\"content\";s:3:\"\\57\";}i:48;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Ice cream\";s:9:\"classname\";s:18:\".auxicon-ice-cream\";s:7:\"content\";s:3:\"\\58\";}i:49;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Ipod\";s:9:\"classname\";s:13:\".auxicon-ipod\";s:7:\"content\";s:3:\"\\59\";}i:50;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Key\";s:9:\"classname\";s:12:\".auxicon-key\";s:7:\"content\";s:3:\"\\5a\";}i:51;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Keyboard\";s:9:\"classname\";s:17:\".auxicon-keyboard\";s:7:\"content\";s:3:\"\\30\";}i:52;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Knife\";s:9:\"classname\";s:14:\".auxicon-knife\";s:7:\"content\";s:3:\"\\31\";}i:53;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Lock round\";s:9:\"classname\";s:19:\".auxicon-lock-round\";s:7:\"content\";s:3:\"\\32\";}i:54;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Lock square\";s:9:\"classname\";s:20:\".auxicon-lock-square\";s:7:\"content\";s:3:\"\\33\";}i:55;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Mouse\";s:9:\"classname\";s:14:\".auxicon-mouse\";s:7:\"content\";s:3:\"\\34\";}i:56;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Musical note 1\";s:9:\"classname\";s:23:\".auxicon-musical-note-1\";s:7:\"content\";s:3:\"\\35\";}i:57;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Musical note 2\";s:9:\"classname\";s:23:\".auxicon-musical-note-2\";s:7:\"content\";s:3:\"\\36\";}i:58;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Paper\";s:9:\"classname\";s:14:\".auxicon-paper\";s:7:\"content\";s:3:\"\\37\";}i:59;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Pause\";s:9:\"classname\";s:14:\".auxicon-pause\";s:7:\"content\";s:3:\"\\38\";}i:60;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Pause round\";s:9:\"classname\";s:20:\".auxicon-pause-round\";s:7:\"content\";s:3:\"\\39\";}i:61;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Pen\";s:9:\"classname\";s:12:\".auxicon-pen\";s:7:\"content\";s:3:\"\\21\";}i:62;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Pencil\";s:9:\"classname\";s:15:\".auxicon-pencil\";s:7:\"content\";s:3:\"\\22\";}i:63;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Platter\";s:9:\"classname\";s:16:\".auxicon-platter\";s:7:\"content\";s:3:\"\\23\";}i:64;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Play\";s:9:\"classname\";s:13:\".auxicon-play\";s:7:\"content\";s:3:\"\\24\";}i:65;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Play round\";s:9:\"classname\";s:19:\".auxicon-play-round\";s:7:\"content\";s:3:\"\\25\";}i:66;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Popsicle\";s:9:\"classname\";s:17:\".auxicon-popsicle\";s:7:\"content\";s:3:\"\\26\";}i:67;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Pound\";s:9:\"classname\";s:14:\".auxicon-pound\";s:7:\"content\";s:3:\"\\27\";}i:68;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Pound coin\";s:9:\"classname\";s:19:\".auxicon-pound-coin\";s:7:\"content\";s:3:\"\\28\";}i:69;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Present 1\";s:9:\"classname\";s:18:\".auxicon-present-1\";s:7:\"content\";s:3:\"\\29\";}i:70;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Present 2\";s:9:\"classname\";s:18:\".auxicon-present-2\";s:7:\"content\";s:3:\"\\2a\";}i:71;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Radio\";s:9:\"classname\";s:14:\".auxicon-radio\";s:7:\"content\";s:3:\"\\2b\";}i:72;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Random\";s:9:\"classname\";s:15:\".auxicon-random\";s:7:\"content\";s:3:\"\\2c\";}i:73;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Repeat 1\";s:9:\"classname\";s:17:\".auxicon-repeat-1\";s:7:\"content\";s:3:\"\\2d\";}i:74;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Repeat 2\";s:9:\"classname\";s:17:\".auxicon-repeat-2\";s:7:\"content\";s:3:\"\\2e\";}i:75;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Ring\";s:9:\"classname\";s:13:\".auxicon-ring\";s:7:\"content\";s:3:\"\\2f\";}i:76;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Ruler\";s:9:\"classname\";s:14:\".auxicon-ruler\";s:7:\"content\";s:3:\"\\3a\";}i:77;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Settings 2\";s:9:\"classname\";s:19:\".auxicon-settings-2\";s:7:\"content\";s:3:\"\\3c\";}i:78;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Settings 3\";s:9:\"classname\";s:19:\".auxicon-settings-3\";s:7:\"content\";s:3:\"\\3d\";}i:79;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Shirt 1\";s:9:\"classname\";s:16:\".auxicon-shirt-1\";s:7:\"content\";s:3:\"\\3e\";}i:80;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Shirt 2\";s:9:\"classname\";s:16:\".auxicon-shirt-2\";s:7:\"content\";s:3:\"\\3f\";}i:81;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Shopping bag 1\";s:9:\"classname\";s:23:\".auxicon-shopping-bag-1\";s:7:\"content\";s:3:\"\\40\";}i:82;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Shopping bag 2\";s:9:\"classname\";s:23:\".auxicon-shopping-bag-2\";s:7:\"content\";s:3:\"\\5b\";}i:83;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Shopping bag 3\";s:9:\"classname\";s:23:\".auxicon-shopping-bag-3\";s:7:\"content\";s:3:\"\\5d\";}i:84;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Shopping bag 4\";s:9:\"classname\";s:23:\".auxicon-shopping-bag-4\";s:7:\"content\";s:3:\"\\5e\";}i:85;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Shopping cart 1\";s:9:\"classname\";s:24:\".auxicon-shopping-cart-1\";s:7:\"content\";s:3:\"\\5f\";}i:86;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"Shopping cart 1 1\";s:9:\"classname\";s:26:\".auxicon-shopping-cart-1-1\";s:7:\"content\";s:3:\"\\60\";}i:87;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"Shopping cart out\";s:9:\"classname\";s:26:\".auxicon-shopping-cart-out\";s:7:\"content\";s:3:\"\\7b\";}i:88;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Shopping cart x\";s:9:\"classname\";s:24:\".auxicon-shopping-cart-x\";s:7:\"content\";s:3:\"\\7c\";}i:89;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Shpping cart in\";s:9:\"classname\";s:24:\".auxicon-shpping-cart-in\";s:7:\"content\";s:3:\"\\7d\";}i:90;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Slider\";s:9:\"classname\";s:15:\".auxicon-slider\";s:7:\"content\";s:3:\"\\7e\";}i:91;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Soup\";s:9:\"classname\";s:13:\".auxicon-soup\";s:7:\"content\";s:3:\"\\5c\";}i:92;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Spray\";s:9:\"classname\";s:14:\".auxicon-spray\";s:7:\"content\";s:5:\"\\e000\";}i:93;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Store\";s:9:\"classname\";s:14:\".auxicon-store\";s:7:\"content\";s:5:\"\\e001\";}i:94;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Sunglasses 1\";s:9:\"classname\";s:21:\".auxicon-sunglasses-1\";s:7:\"content\";s:5:\"\\e002\";}i:95;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Sunglasses 2\";s:9:\"classname\";s:21:\".auxicon-sunglasses-2\";s:7:\"content\";s:5:\"\\e003\";}i:96;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Tag 1\";s:9:\"classname\";s:14:\".auxicon-tag-1\";s:7:\"content\";s:5:\"\\e004\";}i:97;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Tag 2\";s:9:\"classname\";s:14:\".auxicon-tag-2\";s:7:\"content\";s:5:\"\\e005\";}i:98;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Tie\";s:9:\"classname\";s:12:\".auxicon-tie\";s:7:\"content\";s:5:\"\\e006\";}i:99;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Truck 1\";s:9:\"classname\";s:16:\".auxicon-truck-1\";s:7:\"content\";s:5:\"\\e007\";}i:100;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Truck 2\";s:9:\"classname\";s:16:\".auxicon-truck-2\";s:7:\"content\";s:5:\"\\e008\";}i:101;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Upload\";s:9:\"classname\";s:15:\".auxicon-upload\";s:7:\"content\";s:5:\"\\e009\";}i:102;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"User round\";s:9:\"classname\";s:19:\".auxicon-user-round\";s:7:\"content\";s:5:\"\\e00b\";}i:103;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"User v\";s:9:\"classname\";s:15:\".auxicon-user-v\";s:7:\"content\";s:5:\"\\e00c\";}i:104;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"User x\";s:9:\"classname\";s:15:\".auxicon-user-x\";s:7:\"content\";s:5:\"\\e00d\";}i:105;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Vinyl\";s:9:\"classname\";s:14:\".auxicon-vinyl\";s:7:\"content\";s:5:\"\\e00e\";}i:106;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Wallet\";s:9:\"classname\";s:15:\".auxicon-wallet\";s:7:\"content\";s:5:\"\\e00f\";}i:107;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Wallet empty\";s:9:\"classname\";s:21:\".auxicon-wallet-empty\";s:7:\"content\";s:5:\"\\e010\";}i:108;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Watch\";s:9:\"classname\";s:14:\".auxicon-watch\";s:7:\"content\";s:5:\"\\e011\";}i:109;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Wrench 1\";s:9:\"classname\";s:17:\".auxicon-wrench-1\";s:7:\"content\";s:5:\"\\e012\";}i:110;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Wrench 2\";s:9:\"classname\";s:17:\".auxicon-wrench-2\";s:7:\"content\";s:5:\"\\e013\";}i:111;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Alarm clock\";s:9:\"classname\";s:20:\".auxicon-alarm-clock\";s:7:\"content\";s:5:\"\\e014\";}i:112;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Badge\";s:9:\"classname\";s:14:\".auxicon-badge\";s:7:\"content\";s:5:\"\\e015\";}i:113;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Bank\";s:9:\"classname\";s:13:\".auxicon-bank\";s:7:\"content\";s:5:\"\\e016\";}i:114;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Bell\";s:9:\"classname\";s:13:\".auxicon-bell\";s:7:\"content\";s:5:\"\\e017\";}i:115;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Brush\";s:9:\"classname\";s:14:\".auxicon-brush\";s:7:\"content\";s:5:\"\\e018\";}i:116;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Calendar\";s:9:\"classname\";s:17:\".auxicon-calendar\";s:7:\"content\";s:5:\"\\e019\";}i:117;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Camera back\";s:9:\"classname\";s:20:\".auxicon-camera-back\";s:7:\"content\";s:5:\"\\e01a\";}i:118;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Camera front\";s:9:\"classname\";s:21:\".auxicon-camera-front\";s:7:\"content\";s:5:\"\\e01b\";}i:119;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Clipboard\";s:9:\"classname\";s:18:\".auxicon-clipboard\";s:7:\"content\";s:5:\"\\e01c\";}i:120;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Cloud 1\";s:9:\"classname\";s:16:\".auxicon-cloud-1\";s:7:\"content\";s:5:\"\\e01d\";}i:121;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Credit card\";s:9:\"classname\";s:20:\".auxicon-credit-card\";s:7:\"content\";s:5:\"\\e01e\";}i:122;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Dashboard\";s:9:\"classname\";s:18:\".auxicon-dashboard\";s:7:\"content\";s:5:\"\\e01f\";}i:123;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"File\";s:9:\"classname\";s:13:\".auxicon-file\";s:7:\"content\";s:5:\"\\e021\";}i:124;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Folder 1\";s:9:\"classname\";s:17:\".auxicon-folder-1\";s:7:\"content\";s:5:\"\\e022\";}i:125;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Handbag\";s:9:\"classname\";s:16:\".auxicon-handbag\";s:7:\"content\";s:5:\"\\e023\";}i:126;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Heart\";s:9:\"classname\";s:14:\".auxicon-heart\";s:7:\"content\";s:5:\"\\e024\";}i:127;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Home\";s:9:\"classname\";s:13:\".auxicon-home\";s:7:\"content\";s:5:\"\\e025\";}i:128;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Id horizontal\";s:9:\"classname\";s:22:\".auxicon-id-horizontal\";s:7:\"content\";s:5:\"\\e026\";}i:129;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Id vertical\";s:9:\"classname\";s:20:\".auxicon-id-vertical\";s:7:\"content\";s:5:\"\\e027\";}i:130;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Location pin\";s:9:\"classname\";s:21:\".auxicon-location-pin\";s:7:\"content\";s:5:\"\\e028\";}i:131;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Mac\";s:9:\"classname\";s:12:\".auxicon-mac\";s:7:\"content\";s:5:\"\\e029\";}i:132;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Music\";s:9:\"classname\";s:14:\".auxicon-music\";s:7:\"content\";s:5:\"\\e02a\";}i:133;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Music playlist\";s:9:\"classname\";s:23:\".auxicon-music-playlist\";s:7:\"content\";s:5:\"\\e02b\";}i:134;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"News\";s:9:\"classname\";s:13:\".auxicon-news\";s:7:\"content\";s:5:\"\\e02c\";}i:135;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Office\";s:9:\"classname\";s:15:\".auxicon-office\";s:7:\"content\";s:5:\"\\e02e\";}i:136;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Pen 1\";s:9:\"classname\";s:14:\".auxicon-pen-1\";s:7:\"content\";s:5:\"\\e02f\";}i:137;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Pencil 1\";s:9:\"classname\";s:17:\".auxicon-pencil-1\";s:7:\"content\";s:5:\"\\e030\";}i:138;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Phone\";s:9:\"classname\";s:14:\".auxicon-phone\";s:7:\"content\";s:5:\"\\e031\";}i:139;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Photos\";s:9:\"classname\";s:15:\".auxicon-photos\";s:7:\"content\";s:5:\"\\e032\";}i:140;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Pictures day\";s:9:\"classname\";s:21:\".auxicon-pictures-day\";s:7:\"content\";s:5:\"\\e033\";}i:141;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Pictures night\";s:9:\"classname\";s:23:\".auxicon-pictures-night\";s:7:\"content\";s:5:\"\\e034\";}i:142;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Settings\";s:9:\"classname\";s:17:\".auxicon-settings\";s:7:\"content\";s:5:\"\\e035\";}i:143;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Share 10\";s:9:\"classname\";s:17:\".auxicon-share-10\";s:7:\"content\";s:5:\"\\e036\";}i:144;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Shop\";s:9:\"classname\";s:13:\".auxicon-shop\";s:7:\"content\";s:5:\"\\e037\";}i:145;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Stopwatch\";s:9:\"classname\";s:18:\".auxicon-stopwatch\";s:7:\"content\";s:5:\"\\e038\";}i:146;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Tablet\";s:9:\"classname\";s:15:\".auxicon-tablet\";s:7:\"content\";s:5:\"\\e039\";}i:147;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Tag\";s:9:\"classname\";s:12:\".auxicon-tag\";s:7:\"content\";s:5:\"\\e03a\";}i:148;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Tags\";s:9:\"classname\";s:13:\".auxicon-tags\";s:7:\"content\";s:5:\"\\e03b\";}i:149;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Thumbs down\";s:9:\"classname\";s:20:\".auxicon-thumbs-down\";s:7:\"content\";s:5:\"\\e03c\";}i:150;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Thumbs up\";s:9:\"classname\";s:18:\".auxicon-thumbs-up\";s:7:\"content\";s:5:\"\\e03d\";}i:151;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Trophy\";s:9:\"classname\";s:15:\".auxicon-trophy\";s:7:\"content\";s:5:\"\\e03e\";}i:152;O:8:\"stdClass\":3:{s:4:\"name\";s:2:\"Tv\";s:9:\"classname\";s:11:\".auxicon-tv\";s:7:\"content\";s:5:\"\\e03f\";}i:153;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"User 1\";s:9:\"classname\";s:15:\".auxicon-user-1\";s:7:\"content\";s:5:\"\\e040\";}i:154;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Videos\";s:9:\"classname\";s:15:\".auxicon-videos\";s:7:\"content\";s:5:\"\\e041\";}i:155;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Wallet 1\";s:9:\"classname\";s:17:\".auxicon-wallet-1\";s:7:\"content\";s:5:\"\\e042\";}i:156;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Watch 1\";s:9:\"classname\";s:16:\".auxicon-watch-1\";s:7:\"content\";s:5:\"\\e043\";}i:157;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Addons\";s:9:\"classname\";s:15:\".auxicon-addons\";s:7:\"content\";s:5:\"\\e044\";}i:158;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Arrow\";s:9:\"classname\";s:14:\".auxicon-arrow\";s:7:\"content\";s:5:\"\\e045\";}i:159;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Attachment\";s:9:\"classname\";s:19:\".auxicon-attachment\";s:7:\"content\";s:5:\"\\e046\";}i:160;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Award\";s:9:\"classname\";s:14:\".auxicon-award\";s:7:\"content\";s:5:\"\\e047\";}i:161;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Book\";s:9:\"classname\";s:13:\".auxicon-book\";s:7:\"content\";s:5:\"\\e048\";}i:162;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Calendar 1\";s:9:\"classname\";s:19:\".auxicon-calendar-1\";s:7:\"content\";s:5:\"\\e049\";}i:163;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Card\";s:9:\"classname\";s:13:\".auxicon-card\";s:7:\"content\";s:5:\"\\e04a\";}i:164;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Check\";s:9:\"classname\";s:14:\".auxicon-check\";s:7:\"content\";s:5:\"\\e04b\";}i:165;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Coffee\";s:9:\"classname\";s:15:\".auxicon-coffee\";s:7:\"content\";s:5:\"\\e04c\";}i:166;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Compass\";s:9:\"classname\";s:16:\".auxicon-compass\";s:7:\"content\";s:5:\"\\e04d\";}i:167;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Connection\";s:9:\"classname\";s:19:\".auxicon-connection\";s:7:\"content\";s:5:\"\\e04e\";}i:168;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Crown\";s:9:\"classname\";s:14:\".auxicon-crown\";s:7:\"content\";s:5:\"\\e04f\";}i:169;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Dashboard 1\";s:9:\"classname\";s:20:\".auxicon-dashboard-1\";s:7:\"content\";s:5:\"\\e050\";}i:170;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Direction\";s:9:\"classname\";s:18:\".auxicon-direction\";s:7:\"content\";s:5:\"\\e051\";}i:171;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Download 1\";s:9:\"classname\";s:19:\".auxicon-download-1\";s:7:\"content\";s:5:\"\\e052\";}i:172;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Download data\";s:9:\"classname\";s:22:\".auxicon-download-data\";s:7:\"content\";s:5:\"\\e054\";}i:173;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Drop\";s:9:\"classname\";s:13:\".auxicon-drop\";s:7:\"content\";s:5:\"\\e055\";}i:174;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Expand\";s:9:\"classname\";s:15:\".auxicon-expand\";s:7:\"content\";s:5:\"\\e056\";}i:175;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Featured\";s:9:\"classname\";s:17:\".auxicon-featured\";s:7:\"content\";s:5:\"\\e057\";}i:176;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Flag\";s:9:\"classname\";s:13:\".auxicon-flag\";s:7:\"content\";s:5:\"\\e058\";}i:177;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Folder 2\";s:9:\"classname\";s:17:\".auxicon-folder-2\";s:7:\"content\";s:5:\"\\e059\";}i:178;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Food 1\";s:9:\"classname\";s:15:\".auxicon-food-1\";s:7:\"content\";s:5:\"\\e05a\";}i:179;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Food 2\";s:9:\"classname\";s:15:\".auxicon-food-2\";s:7:\"content\";s:5:\"\\e05b\";}i:180;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Gift\";s:9:\"classname\";s:13:\".auxicon-gift\";s:7:\"content\";s:5:\"\\e05c\";}i:181;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Glasses\";s:9:\"classname\";s:16:\".auxicon-glasses\";s:7:\"content\";s:5:\"\\e05d\";}i:182;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Grid\";s:9:\"classname\";s:13:\".auxicon-grid\";s:7:\"content\";s:5:\"\\e05e\";}i:183;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Home 1\";s:9:\"classname\";s:15:\".auxicon-home-1\";s:7:\"content\";s:5:\"\\e05f\";}i:184;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Hot\";s:9:\"classname\";s:12:\".auxicon-hot\";s:7:\"content\";s:5:\"\\e060\";}i:185;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Ice cream 1\";s:9:\"classname\";s:20:\".auxicon-ice-cream-1\";s:7:\"content\";s:5:\"\\e061\";}i:186;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Idea\";s:9:\"classname\";s:13:\".auxicon-idea\";s:7:\"content\";s:5:\"\\e062\";}i:187;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Info\";s:9:\"classname\";s:13:\".auxicon-info\";s:7:\"content\";s:5:\"\\e063\";}i:188;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Label\";s:9:\"classname\";s:14:\".auxicon-label\";s:7:\"content\";s:5:\"\\e064\";}i:189;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Like 2 1\";s:9:\"classname\";s:17:\".auxicon-like-2-1\";s:7:\"content\";s:5:\"\\e065\";}i:190;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Link\";s:9:\"classname\";s:13:\".auxicon-link\";s:7:\"content\";s:5:\"\\e066\";}i:191;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"List\";s:9:\"classname\";s:13:\".auxicon-list\";s:7:\"content\";s:5:\"\\e067\";}i:192;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Loading\";s:9:\"classname\";s:16:\".auxicon-loading\";s:7:\"content\";s:5:\"\\e069\";}i:193;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Login\";s:9:\"classname\";s:14:\".auxicon-login\";s:7:\"content\";s:5:\"\\e06a\";}i:194;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Mail\";s:9:\"classname\";s:13:\".auxicon-mail\";s:7:\"content\";s:5:\"\\e06b\";}i:195;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Map\";s:9:\"classname\";s:12:\".auxicon-map\";s:7:\"content\";s:5:\"\\e06c\";}i:196;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Map 1\";s:9:\"classname\";s:14:\".auxicon-map-1\";s:7:\"content\";s:5:\"\\e06d\";}i:197;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Map 2\";s:9:\"classname\";s:14:\".auxicon-map-2\";s:7:\"content\";s:5:\"\\e06e\";}i:198;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Mark\";s:9:\"classname\";s:13:\".auxicon-mark\";s:7:\"content\";s:5:\"\\e06f\";}i:199;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Media\";s:9:\"classname\";s:14:\".auxicon-media\";s:7:\"content\";s:5:\"\\e070\";}i:200;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Menu\";s:9:\"classname\";s:13:\".auxicon-menu\";s:7:\"content\";s:5:\"\\e071\";}i:201;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Message\";s:9:\"classname\";s:16:\".auxicon-message\";s:7:\"content\";s:5:\"\\e072\";}i:202;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Money\";s:9:\"classname\";s:14:\".auxicon-money\";s:7:\"content\";s:5:\"\\e073\";}i:203;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Music 1\";s:9:\"classname\";s:16:\".auxicon-music-1\";s:7:\"content\";s:5:\"\\e074\";}i:204;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Notification 1\";s:9:\"classname\";s:23:\".auxicon-notification-1\";s:7:\"content\";s:5:\"\\e075\";}i:205;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Notification 2\";s:9:\"classname\";s:23:\".auxicon-notification-2\";s:7:\"content\";s:5:\"\\e076\";}i:206;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Packet\";s:9:\"classname\";s:15:\".auxicon-packet\";s:7:\"content\";s:5:\"\\e077\";}i:207;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Pause 1\";s:9:\"classname\";s:16:\".auxicon-pause-1\";s:7:\"content\";s:5:\"\\e078\";}i:208;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Pen 2\";s:9:\"classname\";s:14:\".auxicon-pen-2\";s:7:\"content\";s:5:\"\\e079\";}i:209;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Phone 1\";s:9:\"classname\";s:16:\".auxicon-phone-1\";s:7:\"content\";s:5:\"\\e07a\";}i:210;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Photo\";s:9:\"classname\";s:14:\".auxicon-photo\";s:7:\"content\";s:5:\"\\e07b\";}i:211;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Play 1\";s:9:\"classname\";s:15:\".auxicon-play-1\";s:7:\"content\";s:5:\"\\e07c\";}i:212;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Portfolio\";s:9:\"classname\";s:18:\".auxicon-portfolio\";s:7:\"content\";s:5:\"\\e07d\";}i:213;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Profile 1\";s:9:\"classname\";s:18:\".auxicon-profile-1\";s:7:\"content\";s:5:\"\\e07e\";}i:214;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Profile 2\";s:9:\"classname\";s:18:\".auxicon-profile-2\";s:7:\"content\";s:5:\"\\e07f\";}i:215;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Profile 3\";s:9:\"classname\";s:18:\".auxicon-profile-3\";s:7:\"content\";s:5:\"\\e080\";}i:216;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Profile 4\";s:9:\"classname\";s:18:\".auxicon-profile-4\";s:7:\"content\";s:5:\"\\e081\";}i:217;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Repair\";s:9:\"classname\";s:15:\".auxicon-repair\";s:7:\"content\";s:5:\"\\e082\";}i:218;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Repost\";s:9:\"classname\";s:15:\".auxicon-repost\";s:7:\"content\";s:5:\"\\e083\";}i:219;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Resend\";s:9:\"classname\";s:15:\".auxicon-resend\";s:7:\"content\";s:5:\"\\e084\";}i:220;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Rocket\";s:9:\"classname\";s:15:\".auxicon-rocket\";s:7:\"content\";s:5:\"\\e085\";}i:221;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Save\";s:9:\"classname\";s:13:\".auxicon-save\";s:7:\"content\";s:5:\"\\e086\";}i:222;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Search\";s:9:\"classname\";s:15:\".auxicon-search\";s:7:\"content\";s:5:\"\\e087\";}i:223;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Settings 4\";s:9:\"classname\";s:19:\".auxicon-settings-4\";s:7:\"content\";s:5:\"\\e088\";}i:224;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Share 1\";s:9:\"classname\";s:16:\".auxicon-share-1\";s:7:\"content\";s:5:\"\\e089\";}i:225;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Share 2\";s:9:\"classname\";s:16:\".auxicon-share-2\";s:7:\"content\";s:5:\"\\e08a\";}i:226;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Shop 1\";s:9:\"classname\";s:15:\".auxicon-shop-1\";s:7:\"content\";s:5:\"\\e08b\";}i:227;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Sorting\";s:9:\"classname\";s:16:\".auxicon-sorting\";s:7:\"content\";s:5:\"\\e08c\";}i:228;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Sound\";s:9:\"classname\";s:14:\".auxicon-sound\";s:7:\"content\";s:5:\"\\e08d\";}i:229;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Star rate\";s:9:\"classname\";s:18:\".auxicon-star-rate\";s:7:\"content\";s:5:\"\\e08e\";}i:230;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Stats 1\";s:9:\"classname\";s:16:\".auxicon-stats-1\";s:7:\"content\";s:5:\"\\e08f\";}i:231;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Stats 2\";s:9:\"classname\";s:16:\".auxicon-stats-2\";s:7:\"content\";s:5:\"\\e090\";}i:232;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Stats 3\";s:9:\"classname\";s:16:\".auxicon-stats-3\";s:7:\"content\";s:5:\"\\e091\";}i:233;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Stop\";s:9:\"classname\";s:13:\".auxicon-stop\";s:7:\"content\";s:5:\"\\e092\";}i:234;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Tablet 1\";s:9:\"classname\";s:17:\".auxicon-tablet-1\";s:7:\"content\";s:5:\"\\e093\";}i:235;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Tablet mini\";s:9:\"classname\";s:20:\".auxicon-tablet-mini\";s:7:\"content\";s:5:\"\\e094\";}i:236;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Time\";s:9:\"classname\";s:13:\".auxicon-time\";s:7:\"content\";s:5:\"\\e095\";}i:237;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Top\";s:9:\"classname\";s:12:\".auxicon-top\";s:7:\"content\";s:5:\"\\e096\";}i:238;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Trash\";s:9:\"classname\";s:14:\".auxicon-trash\";s:7:\"content\";s:5:\"\\e097\";}i:239;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Treasure\";s:9:\"classname\";s:17:\".auxicon-treasure\";s:7:\"content\";s:5:\"\\e098\";}i:240;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"View\";s:9:\"classname\";s:13:\".auxicon-view\";s:7:\"content\";s:5:\"\\e099\";}i:241;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Vote\";s:9:\"classname\";s:13:\".auxicon-vote\";s:7:\"content\";s:5:\"\\e09a\";}i:242;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Wallet 2\";s:9:\"classname\";s:17:\".auxicon-wallet-2\";s:7:\"content\";s:5:\"\\e09b\";}i:243;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Weather\";s:9:\"classname\";s:16:\".auxicon-weather\";s:7:\"content\";s:5:\"\\e09c\";}i:244;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Wireframe\";s:9:\"classname\";s:18:\".auxicon-wireframe\";s:7:\"content\";s:5:\"\\e09d\";}i:245;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Add\";s:9:\"classname\";s:12:\".auxicon-add\";s:7:\"content\";s:5:\"\\e09e\";}i:246;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Alarm\";s:9:\"classname\";s:14:\".auxicon-alarm\";s:7:\"content\";s:5:\"\\e09f\";}i:247;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Anchor\";s:9:\"classname\";s:15:\".auxicon-anchor\";s:7:\"content\";s:5:\"\\e0a0\";}i:248;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Attachment 1\";s:9:\"classname\";s:21:\".auxicon-attachment-1\";s:7:\"content\";s:5:\"\\e0a1\";}i:249;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Brightness\";s:9:\"classname\";s:19:\".auxicon-brightness\";s:7:\"content\";s:5:\"\\e0a2\";}i:250;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Brightness half\";s:9:\"classname\";s:24:\".auxicon-brightness-half\";s:7:\"content\";s:5:\"\\e0a3\";}i:251;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Browser\";s:9:\"classname\";s:16:\".auxicon-browser\";s:7:\"content\";s:5:\"\\e0a4\";}i:252;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Calculator 2\";s:9:\"classname\";s:21:\".auxicon-calculator-2\";s:7:\"content\";s:5:\"\\e0a5\";}i:253;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Calendar 2\";s:9:\"classname\";s:19:\".auxicon-calendar-2\";s:7:\"content\";s:5:\"\\e0a6\";}i:254;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Camera\";s:9:\"classname\";s:15:\".auxicon-camera\";s:7:\"content\";s:5:\"\\e0a7\";}i:255;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Chat\";s:9:\"classname\";s:13:\".auxicon-chat\";s:7:\"content\";s:5:\"\\e0a8\";}i:256;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Circle full\";s:9:\"classname\";s:20:\".auxicon-circle-full\";s:7:\"content\";s:5:\"\\e0a9\";}i:257;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Circle half\";s:9:\"classname\";s:20:\".auxicon-circle-half\";s:7:\"content\";s:5:\"\\e0aa\";}i:258;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Clipboard 1\";s:9:\"classname\";s:20:\".auxicon-clipboard-1\";s:7:\"content\";s:5:\"\\e0ab\";}i:259;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Clock\";s:9:\"classname\";s:14:\".auxicon-clock\";s:7:\"content\";s:5:\"\\e0ac\";}i:260;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Close\";s:9:\"classname\";s:14:\".auxicon-close\";s:7:\"content\";s:5:\"\\e0ad\";}i:261;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Cloud 2\";s:9:\"classname\";s:16:\".auxicon-cloud-2\";s:7:\"content\";s:5:\"\\e0ae\";}i:262;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Cmd\";s:9:\"classname\";s:12:\".auxicon-cmd\";s:7:\"content\";s:5:\"\\e0af\";}i:263;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Comments\";s:9:\"classname\";s:17:\".auxicon-comments\";s:7:\"content\";s:5:\"\\e0b0\";}i:264;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Compose\";s:9:\"classname\";s:16:\".auxicon-compose\";s:7:\"content\";s:5:\"\\e0b1\";}i:265;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Delicious 1\";s:9:\"classname\";s:20:\".auxicon-delicious-1\";s:7:\"content\";s:5:\"\\e0b2\";}i:266;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Dribbble 1\";s:9:\"classname\";s:19:\".auxicon-dribbble-1\";s:7:\"content\";s:5:\"\\e0b3\";}i:267;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Envelope\";s:9:\"classname\";s:17:\".auxicon-envelope\";s:7:\"content\";s:5:\"\\e0b4\";}i:268;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Exclamation\";s:9:\"classname\";s:20:\".auxicon-exclamation\";s:7:\"content\";s:5:\"\\e0b5\";}i:269;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Expand 1\";s:9:\"classname\";s:17:\".auxicon-expand-1\";s:7:\"content\";s:5:\"\\e0b6\";}i:270;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Feather\";s:9:\"classname\";s:16:\".auxicon-feather\";s:7:\"content\";s:5:\"\\e0b8\";}i:271;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Forbid\";s:9:\"classname\";s:15:\".auxicon-forbid\";s:7:\"content\";s:5:\"\\e0b9\";}i:272;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Forbid 1\";s:9:\"classname\";s:17:\".auxicon-forbid-1\";s:7:\"content\";s:5:\"\\e0ba\";}i:273;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Fork and knife\";s:9:\"classname\";s:23:\".auxicon-fork-and-knife\";s:7:\"content\";s:5:\"\\e0bb\";}i:274;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Fork and spoon\";s:9:\"classname\";s:23:\".auxicon-fork-and-spoon\";s:7:\"content\";s:5:\"\\e0bc\";}i:275;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Forward 1\";s:9:\"classname\";s:18:\".auxicon-forward-1\";s:7:\"content\";s:5:\"\\e0bd\";}i:276;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Gallary\";s:9:\"classname\";s:16:\".auxicon-gallary\";s:7:\"content\";s:5:\"\\e0be\";}i:277;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Globe\";s:9:\"classname\";s:14:\".auxicon-globe\";s:7:\"content\";s:5:\"\\e0bf\";}i:278;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Googleplus 1\";s:9:\"classname\";s:21:\".auxicon-googleplus-1\";s:7:\"content\";s:5:\"\\e0c0\";}i:279;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Grid 1\";s:9:\"classname\";s:15:\".auxicon-grid-1\";s:7:\"content\";s:5:\"\\e0c1\";}i:280;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Grid alt\";s:9:\"classname\";s:17:\".auxicon-grid-alt\";s:7:\"content\";s:5:\"\\e0c2\";}i:281;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Heart 1\";s:9:\"classname\";s:16:\".auxicon-heart-1\";s:7:\"content\";s:5:\"\\e0c3\";}i:282;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Home 2\";s:9:\"classname\";s:15:\".auxicon-home-2\";s:7:\"content\";s:5:\"\\e0c4\";}i:283;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Hyperlink\";s:9:\"classname\";s:18:\".auxicon-hyperlink\";s:7:\"content\";s:5:\"\\e0c5\";}i:284;O:8:\"stdClass\":3:{s:4:\"name\";s:2:\"In\";s:9:\"classname\";s:11:\".auxicon-in\";s:7:\"content\";s:5:\"\\e0c6\";}i:285;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"In alt\";s:9:\"classname\";s:15:\".auxicon-in-alt\";s:7:\"content\";s:5:\"\\e0c7\";}i:286;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Inbox\";s:9:\"classname\";s:14:\".auxicon-inbox\";s:7:\"content\";s:5:\"\\e0c8\";}i:287;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Inbox alt\";s:9:\"classname\";s:18:\".auxicon-inbox-alt\";s:7:\"content\";s:5:\"\\e0c9\";}i:288;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Ipad\";s:9:\"classname\";s:13:\".auxicon-ipad\";s:7:\"content\";s:5:\"\\e0cb\";}i:289;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Iphone\";s:9:\"classname\";s:15:\".auxicon-iphone\";s:7:\"content\";s:5:\"\\e0cc\";}i:290;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Light bulb\";s:9:\"classname\";s:19:\".auxicon-light-bulb\";s:7:\"content\";s:5:\"\\e0cd\";}i:291;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"List 1\";s:9:\"classname\";s:15:\".auxicon-list-1\";s:7:\"content\";s:5:\"\\e0ce\";}i:292;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Maximize\";s:9:\"classname\";s:17:\".auxicon-maximize\";s:7:\"content\";s:5:\"\\e0cf\";}i:293;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Menu 1\";s:9:\"classname\";s:15:\".auxicon-menu-1\";s:7:\"content\";s:5:\"\\e0d0\";}i:294;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Moon\";s:9:\"classname\";s:13:\".auxicon-moon\";s:7:\"content\";s:5:\"\\e0d1\";}i:295;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Newspaper\";s:9:\"classname\";s:18:\".auxicon-newspaper\";s:7:\"content\";s:5:\"\\e0d2\";}i:296;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Newspaper alt\";s:9:\"classname\";s:22:\".auxicon-newspaper-alt\";s:7:\"content\";s:5:\"\\e0d3\";}i:297;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Out\";s:9:\"classname\";s:12:\".auxicon-out\";s:7:\"content\";s:5:\"\\e0d4\";}i:298;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Pause 2\";s:9:\"classname\";s:16:\".auxicon-pause-2\";s:7:\"content\";s:5:\"\\e0d5\";}i:299;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Pin\";s:9:\"classname\";s:12:\".auxicon-pin\";s:7:\"content\";s:5:\"\\e0d6\";}i:300;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Pin alt\";s:9:\"classname\";s:16:\".auxicon-pin-alt\";s:7:\"content\";s:5:\"\\e0d7\";}i:301;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Play 2\";s:9:\"classname\";s:15:\".auxicon-play-2\";s:7:\"content\";s:5:\"\\e0d8\";}i:302;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Portfolio 1\";s:9:\"classname\";s:20:\".auxicon-portfolio-1\";s:7:\"content\";s:5:\"\\e0d9\";}i:303;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Question\";s:9:\"classname\";s:17:\".auxicon-question\";s:7:\"content\";s:5:\"\\e0da\";}i:304;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Rewind\";s:9:\"classname\";s:15:\".auxicon-rewind\";s:7:\"content\";s:5:\"\\e0db\";}i:305;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Screen\";s:9:\"classname\";s:15:\".auxicon-screen\";s:7:\"content\";s:5:\"\\e0dc\";}i:306;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Settings 5\";s:9:\"classname\";s:19:\".auxicon-settings-5\";s:7:\"content\";s:5:\"\\e0de\";}i:307;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Sound 1\";s:9:\"classname\";s:16:\".auxicon-sound-1\";s:7:\"content\";s:5:\"\\e0df\";}i:308;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Sound alt\";s:9:\"classname\";s:18:\".auxicon-sound-alt\";s:7:\"content\";s:5:\"\\e0e0\";}i:309;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Sound off\";s:9:\"classname\";s:18:\".auxicon-sound-off\";s:7:\"content\";s:5:\"\\e0e1\";}i:310;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Spinner\";s:9:\"classname\";s:16:\".auxicon-spinner\";s:7:\"content\";s:5:\"\\e0e2\";}i:311;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Stop 1\";s:9:\"classname\";s:15:\".auxicon-stop-1\";s:7:\"content\";s:5:\"\\e0e3\";}i:312;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Store 1\";s:9:\"classname\";s:16:\".auxicon-store-1\";s:7:\"content\";s:5:\"\\e0e4\";}i:313;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Subtract\";s:9:\"classname\";s:17:\".auxicon-subtract\";s:7:\"content\";s:5:\"\\e0e5\";}i:314;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Task\";s:9:\"classname\";s:13:\".auxicon-task\";s:7:\"content\";s:5:\"\\e0e6\";}i:315;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Trash 1\";s:9:\"classname\";s:16:\".auxicon-trash-1\";s:7:\"content\";s:5:\"\\e0e7\";}i:316;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Trash alt\";s:9:\"classname\";s:18:\".auxicon-trash-alt\";s:7:\"content\";s:5:\"\\e0e8\";}i:317;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"User 2\";s:9:\"classname\";s:15:\".auxicon-user-2\";s:7:\"content\";s:5:\"\\e0e9\";}i:318;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Users\";s:9:\"classname\";s:14:\".auxicon-users\";s:7:\"content\";s:5:\"\\e0ea\";}i:319;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Windows 1 1\";s:9:\"classname\";s:20:\".auxicon-windows-1-1\";s:7:\"content\";s:5:\"\\e0eb\";}i:320;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Zoom in\";s:9:\"classname\";s:16:\".auxicon-zoom-in\";s:7:\"content\";s:5:\"\\e0ec\";}i:321;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Zoom out\";s:9:\"classname\";s:17:\".auxicon-zoom-out\";s:7:\"content\";s:5:\"\\e0ed\";}i:322;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Alert\";s:9:\"classname\";s:14:\".auxicon-alert\";s:7:\"content\";s:5:\"\\e0ee\";}i:323;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Alignment align\";s:9:\"classname\";s:24:\".auxicon-alignment-align\";s:7:\"content\";s:5:\"\\e0ef\";}i:324;O:8:\"stdClass\":3:{s:4:\"name\";s:20:\"Alignment aligned to\";s:9:\"classname\";s:29:\".auxicon-alignment-aligned-to\";s:7:\"content\";s:5:\"\\e0f0\";}i:325;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"Alignment unalign\";s:9:\"classname\";s:26:\".auxicon-alignment-unalign\";s:7:\"content\";s:5:\"\\e0f1\";}i:326;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Arrow down\";s:9:\"classname\";s:19:\".auxicon-arrow-down\";s:7:\"content\";s:5:\"\\e0f2\";}i:327;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Arrow left\";s:9:\"classname\";s:19:\".auxicon-arrow-left\";s:7:\"content\";s:5:\"\\e0f3\";}i:328;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Arrow right\";s:9:\"classname\";s:20:\".auxicon-arrow-right\";s:7:\"content\";s:5:\"\\e0f4\";}i:329;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Arrow small down\";s:9:\"classname\";s:25:\".auxicon-arrow-small-down\";s:7:\"content\";s:5:\"\\e0f5\";}i:330;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Arrow small left\";s:9:\"classname\";s:25:\".auxicon-arrow-small-left\";s:7:\"content\";s:5:\"\\e0f6\";}i:331;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"Arrow small right\";s:9:\"classname\";s:26:\".auxicon-arrow-small-right\";s:7:\"content\";s:5:\"\\e0f7\";}i:332;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Arrow small up\";s:9:\"classname\";s:23:\".auxicon-arrow-small-up\";s:7:\"content\";s:5:\"\\e0f8\";}i:333;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Arrow up\";s:9:\"classname\";s:17:\".auxicon-arrow-up\";s:7:\"content\";s:5:\"\\e0f9\";}i:334;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Beer\";s:9:\"classname\";s:13:\".auxicon-beer\";s:7:\"content\";s:5:\"\\e0fa\";}i:335;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Book 1\";s:9:\"classname\";s:15:\".auxicon-book-1\";s:7:\"content\";s:5:\"\\e0fb\";}i:336;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Bookmark\";s:9:\"classname\";s:17:\".auxicon-bookmark\";s:7:\"content\";s:5:\"\\e0fc\";}i:337;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Briefcase\";s:9:\"classname\";s:18:\".auxicon-briefcase\";s:7:\"content\";s:5:\"\\e0fd\";}i:338;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Broadcast\";s:9:\"classname\";s:18:\".auxicon-broadcast\";s:7:\"content\";s:5:\"\\e0fe\";}i:339;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Browser 1\";s:9:\"classname\";s:18:\".auxicon-browser-1\";s:7:\"content\";s:5:\"\\e0ff\";}i:340;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Bug\";s:9:\"classname\";s:12:\".auxicon-bug\";s:7:\"content\";s:5:\"\\e100\";}i:341;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Calendar 3\";s:9:\"classname\";s:19:\".auxicon-calendar-3\";s:7:\"content\";s:5:\"\\e101\";}i:342;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Check 1\";s:9:\"classname\";s:16:\".auxicon-check-1\";s:7:\"content\";s:5:\"\\e102\";}i:343;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Checklist\";s:9:\"classname\";s:18:\".auxicon-checklist\";s:7:\"content\";s:5:\"\\e103\";}i:344;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Chevron down\";s:9:\"classname\";s:21:\".auxicon-chevron-down\";s:7:\"content\";s:5:\"\\e104\";}i:345;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Chevron left\";s:9:\"classname\";s:21:\".auxicon-chevron-left\";s:7:\"content\";s:5:\"\\e105\";}i:346;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Chevron right\";s:9:\"classname\";s:22:\".auxicon-chevron-right\";s:7:\"content\";s:5:\"\\e106\";}i:347;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Chevron up\";s:9:\"classname\";s:19:\".auxicon-chevron-up\";s:7:\"content\";s:5:\"\\e107\";}i:348;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Circle slash\";s:9:\"classname\";s:21:\".auxicon-circle-slash\";s:7:\"content\";s:5:\"\\e108\";}i:349;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Circuit board\";s:9:\"classname\";s:22:\".auxicon-circuit-board\";s:7:\"content\";s:5:\"\\e109\";}i:350;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Clippy\";s:9:\"classname\";s:15:\".auxicon-clippy\";s:7:\"content\";s:5:\"\\e10a\";}i:351;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Clock 1\";s:9:\"classname\";s:16:\".auxicon-clock-1\";s:7:\"content\";s:5:\"\\e10b\";}i:352;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Cloud download\";s:9:\"classname\";s:23:\".auxicon-cloud-download\";s:7:\"content\";s:5:\"\\e10c\";}i:353;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Cloud upload\";s:9:\"classname\";s:21:\".auxicon-cloud-upload\";s:7:\"content\";s:5:\"\\e10d\";}i:354;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Code\";s:9:\"classname\";s:13:\".auxicon-code\";s:7:\"content\";s:5:\"\\e10e\";}i:355;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Color mode\";s:9:\"classname\";s:19:\".auxicon-color-mode\";s:7:\"content\";s:5:\"\\e10f\";}i:356;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Comment 2 1\";s:9:\"classname\";s:20:\".auxicon-comment-2-1\";s:7:\"content\";s:5:\"\\e110\";}i:357;O:8:\"stdClass\":3:{s:4:\"name\";s:18:\"Comment discussion\";s:9:\"classname\";s:27:\".auxicon-comment-discussion\";s:7:\"content\";s:5:\"\\e111\";}i:358;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Credit card 5\";s:9:\"classname\";s:22:\".auxicon-credit-card-5\";s:7:\"content\";s:5:\"\\e112\";}i:359;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Dash\";s:9:\"classname\";s:13:\".auxicon-dash\";s:7:\"content\";s:5:\"\\e113\";}i:360;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Dashboard 2\";s:9:\"classname\";s:20:\".auxicon-dashboard-2\";s:7:\"content\";s:5:\"\\e114\";}i:361;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Database\";s:9:\"classname\";s:17:\".auxicon-database\";s:7:\"content\";s:5:\"\\e115\";}i:362;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Device camera\";s:9:\"classname\";s:22:\".auxicon-device-camera\";s:7:\"content\";s:5:\"\\e116\";}i:363;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Device camera video\";s:9:\"classname\";s:28:\".auxicon-device-camera-video\";s:7:\"content\";s:5:\"\\e117\";}i:364;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Device desktop\";s:9:\"classname\";s:23:\".auxicon-device-desktop\";s:7:\"content\";s:5:\"\\e118\";}i:365;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Device mobile\";s:9:\"classname\";s:22:\".auxicon-device-mobile\";s:7:\"content\";s:5:\"\\e119\";}i:366;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Diff\";s:9:\"classname\";s:13:\".auxicon-diff\";s:7:\"content\";s:5:\"\\e11a\";}i:367;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Diff added\";s:9:\"classname\";s:19:\".auxicon-diff-added\";s:7:\"content\";s:5:\"\\e11b\";}i:368;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Diff ignored\";s:9:\"classname\";s:21:\".auxicon-diff-ignored\";s:7:\"content\";s:5:\"\\e11c\";}i:369;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Diff modified\";s:9:\"classname\";s:22:\".auxicon-diff-modified\";s:7:\"content\";s:5:\"\\e11d\";}i:370;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Diff removed\";s:9:\"classname\";s:21:\".auxicon-diff-removed\";s:7:\"content\";s:5:\"\\e11e\";}i:371;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Diff renamed\";s:9:\"classname\";s:21:\".auxicon-diff-renamed\";s:7:\"content\";s:5:\"\\e11f\";}i:372;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Ellipsis\";s:9:\"classname\";s:17:\".auxicon-ellipsis\";s:7:\"content\";s:5:\"\\e120\";}i:373;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Eye\";s:9:\"classname\";s:12:\".auxicon-eye\";s:7:\"content\";s:5:\"\\e121\";}i:374;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"File binary\";s:9:\"classname\";s:20:\".auxicon-file-binary\";s:7:\"content\";s:5:\"\\e122\";}i:375;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"File code\";s:9:\"classname\";s:18:\".auxicon-file-code\";s:7:\"content\";s:5:\"\\e123\";}i:376;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"File directory\";s:9:\"classname\";s:23:\".auxicon-file-directory\";s:7:\"content\";s:5:\"\\e124\";}i:377;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"File media\";s:9:\"classname\";s:19:\".auxicon-file-media\";s:7:\"content\";s:5:\"\\e125\";}i:378;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"File pdf\";s:9:\"classname\";s:17:\".auxicon-file-pdf\";s:7:\"content\";s:5:\"\\e126\";}i:379;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"File submodule\";s:9:\"classname\";s:23:\".auxicon-file-submodule\";s:7:\"content\";s:5:\"\\e127\";}i:380;O:8:\"stdClass\":3:{s:4:\"name\";s:22:\"File symlink directory\";s:9:\"classname\";s:31:\".auxicon-file-symlink-directory\";s:7:\"content\";s:5:\"\\e128\";}i:381;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"File symlink file\";s:9:\"classname\";s:26:\".auxicon-file-symlink-file\";s:7:\"content\";s:5:\"\\e129\";}i:382;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"File text\";s:9:\"classname\";s:18:\".auxicon-file-text\";s:7:\"content\";s:5:\"\\e12a\";}i:383;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"File zip\";s:9:\"classname\";s:17:\".auxicon-file-zip\";s:7:\"content\";s:5:\"\\e12b\";}i:384;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Flame\";s:9:\"classname\";s:14:\".auxicon-flame\";s:7:\"content\";s:5:\"\\e12c\";}i:385;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Fold\";s:9:\"classname\";s:13:\".auxicon-fold\";s:7:\"content\";s:5:\"\\e12d\";}i:386;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Gear\";s:9:\"classname\";s:13:\".auxicon-gear\";s:7:\"content\";s:5:\"\\e12e\";}i:387;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Gift 1\";s:9:\"classname\";s:15:\".auxicon-gift-1\";s:7:\"content\";s:5:\"\\e12f\";}i:388;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Gist\";s:9:\"classname\";s:13:\".auxicon-gist\";s:7:\"content\";s:5:\"\\e130\";}i:389;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Gist secret\";s:9:\"classname\";s:20:\".auxicon-gist-secret\";s:7:\"content\";s:5:\"\\e131\";}i:390;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Git branch\";s:9:\"classname\";s:19:\".auxicon-git-branch\";s:7:\"content\";s:5:\"\\e132\";}i:391;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Git commit\";s:9:\"classname\";s:19:\".auxicon-git-commit\";s:7:\"content\";s:5:\"\\e133\";}i:392;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Git compare\";s:9:\"classname\";s:20:\".auxicon-git-compare\";s:7:\"content\";s:5:\"\\e134\";}i:393;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Git merge\";s:9:\"classname\";s:18:\".auxicon-git-merge\";s:7:\"content\";s:5:\"\\e135\";}i:394;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Git pull request\";s:9:\"classname\";s:25:\".auxicon-git-pull-request\";s:7:\"content\";s:5:\"\\e136\";}i:395;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Globe 1\";s:9:\"classname\";s:16:\".auxicon-globe-1\";s:7:\"content\";s:5:\"\\e137\";}i:396;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Graph\";s:9:\"classname\";s:14:\".auxicon-graph\";s:7:\"content\";s:5:\"\\e138\";}i:397;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Heart 2\";s:9:\"classname\";s:16:\".auxicon-heart-2\";s:7:\"content\";s:5:\"\\e139\";}i:398;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"History\";s:9:\"classname\";s:16:\".auxicon-history\";s:7:\"content\";s:5:\"\\e13a\";}i:399;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Home 3\";s:9:\"classname\";s:15:\".auxicon-home-3\";s:7:\"content\";s:5:\"\\e13b\";}i:400;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Horizontal rule\";s:9:\"classname\";s:24:\".auxicon-horizontal-rule\";s:7:\"content\";s:5:\"\\e13c\";}i:401;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Hourglass\";s:9:\"classname\";s:18:\".auxicon-hourglass\";s:7:\"content\";s:5:\"\\e13d\";}i:402;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Hubot\";s:9:\"classname\";s:14:\".auxicon-hubot\";s:7:\"content\";s:5:\"\\e13e\";}i:403;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Inbox 1\";s:9:\"classname\";s:16:\".auxicon-inbox-1\";s:7:\"content\";s:5:\"\\e13f\";}i:404;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Info 1\";s:9:\"classname\";s:15:\".auxicon-info-1\";s:7:\"content\";s:5:\"\\e140\";}i:405;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Issue closed\";s:9:\"classname\";s:21:\".auxicon-issue-closed\";s:7:\"content\";s:5:\"\\e141\";}i:406;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Issue opened\";s:9:\"classname\";s:21:\".auxicon-issue-opened\";s:7:\"content\";s:5:\"\\e142\";}i:407;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Issue reopened\";s:9:\"classname\";s:23:\".auxicon-issue-reopened\";s:7:\"content\";s:5:\"\\e143\";}i:408;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Jersey\";s:9:\"classname\";s:15:\".auxicon-jersey\";s:7:\"content\";s:5:\"\\e144\";}i:409;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Jump down\";s:9:\"classname\";s:18:\".auxicon-jump-down\";s:7:\"content\";s:5:\"\\e145\";}i:410;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Jump left\";s:9:\"classname\";s:18:\".auxicon-jump-left\";s:7:\"content\";s:5:\"\\e146\";}i:411;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Jump right\";s:9:\"classname\";s:19:\".auxicon-jump-right\";s:7:\"content\";s:5:\"\\e147\";}i:412;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Jump up\";s:9:\"classname\";s:16:\".auxicon-jump-up\";s:7:\"content\";s:5:\"\\e148\";}i:413;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Key 1\";s:9:\"classname\";s:14:\".auxicon-key-1\";s:7:\"content\";s:5:\"\\e149\";}i:414;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Keyboard 1\";s:9:\"classname\";s:19:\".auxicon-keyboard-1\";s:7:\"content\";s:5:\"\\e14a\";}i:415;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Law\";s:9:\"classname\";s:12:\".auxicon-law\";s:7:\"content\";s:5:\"\\e14b\";}i:416;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Light bulb 1\";s:9:\"classname\";s:21:\".auxicon-light-bulb-1\";s:7:\"content\";s:5:\"\\e14c\";}i:417;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Link 1\";s:9:\"classname\";s:15:\".auxicon-link-1\";s:7:\"content\";s:5:\"\\e14d\";}i:418;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Link external\";s:9:\"classname\";s:22:\".auxicon-link-external\";s:7:\"content\";s:5:\"\\e14e\";}i:419;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"List ordered\";s:9:\"classname\";s:21:\".auxicon-list-ordered\";s:7:\"content\";s:5:\"\\e14f\";}i:420;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"List unordered\";s:9:\"classname\";s:23:\".auxicon-list-unordered\";s:7:\"content\";s:5:\"\\e150\";}i:421;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Location\";s:9:\"classname\";s:17:\".auxicon-location\";s:7:\"content\";s:5:\"\\e151\";}i:422;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Lock\";s:9:\"classname\";s:13:\".auxicon-lock\";s:7:\"content\";s:5:\"\\e152\";}i:423;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Logo github\";s:9:\"classname\";s:20:\".auxicon-logo-github\";s:7:\"content\";s:5:\"\\e153\";}i:424;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Mail 1\";s:9:\"classname\";s:15:\".auxicon-mail-1\";s:7:\"content\";s:5:\"\\e154\";}i:425;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Mail read\";s:9:\"classname\";s:18:\".auxicon-mail-read\";s:7:\"content\";s:5:\"\\e155\";}i:426;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Mail reply\";s:9:\"classname\";s:19:\".auxicon-mail-reply\";s:7:\"content\";s:5:\"\\e156\";}i:427;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Mark github\";s:9:\"classname\";s:20:\".auxicon-mark-github\";s:7:\"content\";s:5:\"\\e157\";}i:428;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Markdown\";s:9:\"classname\";s:17:\".auxicon-markdown\";s:7:\"content\";s:5:\"\\e158\";}i:429;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Megaphone\";s:9:\"classname\";s:18:\".auxicon-megaphone\";s:7:\"content\";s:5:\"\\e159\";}i:430;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Mention\";s:9:\"classname\";s:16:\".auxicon-mention\";s:7:\"content\";s:5:\"\\e15a\";}i:431;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Microscope\";s:9:\"classname\";s:19:\".auxicon-microscope\";s:7:\"content\";s:5:\"\\e15b\";}i:432;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Milestone\";s:9:\"classname\";s:18:\".auxicon-milestone\";s:7:\"content\";s:5:\"\\e15c\";}i:433;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Mirror\";s:9:\"classname\";s:15:\".auxicon-mirror\";s:7:\"content\";s:5:\"\\e15d\";}i:434;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Mortar board\";s:9:\"classname\";s:21:\".auxicon-mortar-board\";s:7:\"content\";s:5:\"\\e15e\";}i:435;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Move down\";s:9:\"classname\";s:18:\".auxicon-move-down\";s:7:\"content\";s:5:\"\\e15f\";}i:436;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Move left\";s:9:\"classname\";s:18:\".auxicon-move-left\";s:7:\"content\";s:5:\"\\e160\";}i:437;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Move right\";s:9:\"classname\";s:19:\".auxicon-move-right\";s:7:\"content\";s:5:\"\\e161\";}i:438;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Move up\";s:9:\"classname\";s:16:\".auxicon-move-up\";s:7:\"content\";s:5:\"\\e162\";}i:439;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Mute\";s:9:\"classname\";s:13:\".auxicon-mute\";s:7:\"content\";s:5:\"\\e163\";}i:440;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"No newline\";s:9:\"classname\";s:19:\".auxicon-no-newline\";s:7:\"content\";s:5:\"\\e164\";}i:441;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Octoface\";s:9:\"classname\";s:17:\".auxicon-octoface\";s:7:\"content\";s:5:\"\\e165\";}i:442;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Organization\";s:9:\"classname\";s:21:\".auxicon-organization\";s:7:\"content\";s:5:\"\\e166\";}i:443;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Package\";s:9:\"classname\";s:16:\".auxicon-package\";s:7:\"content\";s:5:\"\\e167\";}i:444;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Paintcan\";s:9:\"classname\";s:17:\".auxicon-paintcan\";s:7:\"content\";s:5:\"\\e168\";}i:445;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Pencil 2\";s:9:\"classname\";s:17:\".auxicon-pencil-2\";s:7:\"content\";s:5:\"\\e169\";}i:446;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Person\";s:9:\"classname\";s:15:\".auxicon-person\";s:7:\"content\";s:5:\"\\e16a\";}i:447;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Pin 1\";s:9:\"classname\";s:14:\".auxicon-pin-1\";s:7:\"content\";s:5:\"\\e16b\";}i:448;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Playback fast forward\";s:9:\"classname\";s:30:\".auxicon-playback-fast-forward\";s:7:\"content\";s:5:\"\\e16c\";}i:449;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Playback pause\";s:9:\"classname\";s:23:\".auxicon-playback-pause\";s:7:\"content\";s:5:\"\\e16d\";}i:450;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Playback rewind\";s:9:\"classname\";s:24:\".auxicon-playback-rewind\";s:7:\"content\";s:5:\"\\e16f\";}i:451;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Plug\";s:9:\"classname\";s:13:\".auxicon-plug\";s:7:\"content\";s:5:\"\\e170\";}i:452;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Podium\";s:9:\"classname\";s:15:\".auxicon-podium\";s:7:\"content\";s:5:\"\\e172\";}i:453;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Primitive dot\";s:9:\"classname\";s:22:\".auxicon-primitive-dot\";s:7:\"content\";s:5:\"\\e173\";}i:454;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Primitive square\";s:9:\"classname\";s:25:\".auxicon-primitive-square\";s:7:\"content\";s:5:\"\\e174\";}i:455;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Pulse\";s:9:\"classname\";s:14:\".auxicon-pulse\";s:7:\"content\";s:5:\"\\e175\";}i:456;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Puzzle\";s:9:\"classname\";s:15:\".auxicon-puzzle\";s:7:\"content\";s:5:\"\\e176\";}i:457;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Question 1\";s:9:\"classname\";s:19:\".auxicon-question-1\";s:7:\"content\";s:5:\"\\e177\";}i:458;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Quote\";s:9:\"classname\";s:14:\".auxicon-quote\";s:7:\"content\";s:5:\"\\e178\";}i:459;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Radio tower\";s:9:\"classname\";s:20:\".auxicon-radio-tower\";s:7:\"content\";s:5:\"\\e179\";}i:460;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Repo\";s:9:\"classname\";s:13:\".auxicon-repo\";s:7:\"content\";s:5:\"\\e17a\";}i:461;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Repo clone\";s:9:\"classname\";s:19:\".auxicon-repo-clone\";s:7:\"content\";s:5:\"\\e17b\";}i:462;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Repo force push\";s:9:\"classname\";s:24:\".auxicon-repo-force-push\";s:7:\"content\";s:5:\"\\e17c\";}i:463;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Repo forked\";s:9:\"classname\";s:20:\".auxicon-repo-forked\";s:7:\"content\";s:5:\"\\e17d\";}i:464;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Repo pull\";s:9:\"classname\";s:18:\".auxicon-repo-pull\";s:7:\"content\";s:5:\"\\e17e\";}i:465;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Repo push\";s:9:\"classname\";s:18:\".auxicon-repo-push\";s:7:\"content\";s:5:\"\\e17f\";}i:466;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Rocket 1\";s:9:\"classname\";s:17:\".auxicon-rocket-1\";s:7:\"content\";s:5:\"\\e180\";}i:467;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Rss 1\";s:9:\"classname\";s:14:\".auxicon-rss-1\";s:7:\"content\";s:5:\"\\e181\";}i:468;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Ruby\";s:9:\"classname\";s:13:\".auxicon-ruby\";s:7:\"content\";s:5:\"\\e182\";}i:469;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Screen full\";s:9:\"classname\";s:20:\".auxicon-screen-full\";s:7:\"content\";s:5:\"\\e183\";}i:470;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Screen normal\";s:9:\"classname\";s:22:\".auxicon-screen-normal\";s:7:\"content\";s:5:\"\\e184\";}i:471;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Search 2\";s:9:\"classname\";s:17:\".auxicon-search-2\";s:7:\"content\";s:5:\"\\e185\";}i:472;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Server\";s:9:\"classname\";s:15:\".auxicon-server\";s:7:\"content\";s:5:\"\\e186\";}i:473;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Settings 6\";s:9:\"classname\";s:19:\".auxicon-settings-6\";s:7:\"content\";s:5:\"\\e187\";}i:474;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Sign in\";s:9:\"classname\";s:16:\".auxicon-sign-in\";s:7:\"content\";s:5:\"\\e188\";}i:475;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Sign out\";s:9:\"classname\";s:17:\".auxicon-sign-out\";s:7:\"content\";s:5:\"\\e189\";}i:476;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Split\";s:9:\"classname\";s:14:\".auxicon-split\";s:7:\"content\";s:5:\"\\e18a\";}i:477;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Squirrel\";s:9:\"classname\";s:17:\".auxicon-squirrel\";s:7:\"content\";s:5:\"\\e18b\";}i:478;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Star\";s:9:\"classname\";s:13:\".auxicon-star\";s:7:\"content\";s:5:\"\\e18c\";}i:479;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Steps\";s:9:\"classname\";s:14:\".auxicon-steps\";s:7:\"content\";s:5:\"\\e18d\";}i:480;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Stop 2\";s:9:\"classname\";s:15:\".auxicon-stop-2\";s:7:\"content\";s:5:\"\\e18e\";}i:481;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Sync\";s:9:\"classname\";s:13:\".auxicon-sync\";s:7:\"content\";s:5:\"\\e18f\";}i:482;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Tag 3\";s:9:\"classname\";s:14:\".auxicon-tag-3\";s:7:\"content\";s:5:\"\\e190\";}i:483;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Telescope\";s:9:\"classname\";s:18:\".auxicon-telescope\";s:7:\"content\";s:5:\"\\e191\";}i:484;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Terminal\";s:9:\"classname\";s:17:\".auxicon-terminal\";s:7:\"content\";s:5:\"\\e192\";}i:485;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Three bars\";s:9:\"classname\";s:19:\".auxicon-three-bars\";s:7:\"content\";s:5:\"\\e193\";}i:486;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Tools\";s:9:\"classname\";s:14:\".auxicon-tools\";s:7:\"content\";s:5:\"\\e194\";}i:487;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Trashcan\";s:9:\"classname\";s:17:\".auxicon-trashcan\";s:7:\"content\";s:5:\"\\e195\";}i:488;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Triangle down\";s:9:\"classname\";s:22:\".auxicon-triangle-down\";s:7:\"content\";s:5:\"\\e196\";}i:489;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Triangle left\";s:9:\"classname\";s:22:\".auxicon-triangle-left\";s:7:\"content\";s:5:\"\\e197\";}i:490;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Triangle right\";s:9:\"classname\";s:23:\".auxicon-triangle-right\";s:7:\"content\";s:5:\"\\e198\";}i:491;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Triangle up\";s:9:\"classname\";s:20:\".auxicon-triangle-up\";s:7:\"content\";s:5:\"\\e199\";}i:492;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Unfold\";s:9:\"classname\";s:15:\".auxicon-unfold\";s:7:\"content\";s:5:\"\\e19a\";}i:493;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Unmute\";s:9:\"classname\";s:15:\".auxicon-unmute\";s:7:\"content\";s:5:\"\\e19b\";}i:494;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Versions\";s:9:\"classname\";s:17:\".auxicon-versions\";s:7:\"content\";s:5:\"\\e19c\";}i:495;O:8:\"stdClass\":3:{s:4:\"name\";s:1:\"X\";s:9:\"classname\";s:10:\".auxicon-x\";s:7:\"content\";s:5:\"\\e19d\";}i:496;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Zap\";s:9:\"classname\";s:12:\".auxicon-zap\";s:7:\"content\";s:5:\"\\e19e\";}i:497;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Armchair chair streamline\";s:9:\"classname\";s:34:\".auxicon-armchair-chair-streamline\";s:7:\"content\";s:5:\"\\e617\";}i:498;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Arrow streamline target\";s:9:\"classname\";s:32:\".auxicon-arrow-streamline-target\";s:7:\"content\";s:5:\"\\e618\";}i:499;O:8:\"stdClass\":3:{s:4:\"name\";s:28:\"Backpack streamline trekking\";s:9:\"classname\";s:37:\".auxicon-backpack-streamline-trekking\";s:7:\"content\";s:5:\"\\e619\";}i:500;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Bag shopping streamline\";s:9:\"classname\";s:32:\".auxicon-bag-shopping-streamline\";s:7:\"content\";s:5:\"\\e61a\";}i:501;O:8:\"stdClass\":3:{s:4:\"name\";s:28:\"Barbecue eat food streamline\";s:9:\"classname\";s:37:\".auxicon-barbecue-eat-food-streamline\";s:7:\"content\";s:5:\"\\e61b\";}i:502;O:8:\"stdClass\":3:{s:4:\"name\";s:34:\"Barista coffee espresso streamline\";s:9:\"classname\";s:43:\".auxicon-barista-coffee-espresso-streamline\";s:7:\"content\";s:5:\"\\e61c\";}i:503;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Bomb bug\";s:9:\"classname\";s:17:\".auxicon-bomb-bug\";s:7:\"content\";s:5:\"\\e61d\";}i:504;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Book dowload streamline\";s:9:\"classname\";s:32:\".auxicon-book-dowload-streamline\";s:7:\"content\";s:5:\"\\e61e\";}i:505;O:8:\"stdClass\":3:{s:4:\"name\";s:20:\"Book read streamline\";s:9:\"classname\";s:29:\".auxicon-book-read-streamline\";s:7:\"content\";s:5:\"\\e61f\";}i:506;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Browser streamline window\";s:9:\"classname\";s:34:\".auxicon-browser-streamline-window\";s:7:\"content\";s:5:\"\\e620\";}i:507;O:8:\"stdClass\":3:{s:4:\"name\";s:22:\"Brush paint streamline\";s:9:\"classname\";s:31:\".auxicon-brush-paint-streamline\";s:7:\"content\";s:5:\"\\e621\";}i:508;O:8:\"stdClass\":3:{s:4:\"name\";s:30:\"Bubble comment streamline talk\";s:9:\"classname\";s:39:\".auxicon-bubble-comment-streamline-talk\";s:7:\"content\";s:5:\"\\e622\";}i:509;O:8:\"stdClass\":3:{s:4:\"name\";s:27:\"Bubble love streamline talk\";s:9:\"classname\";s:36:\".auxicon-bubble-love-streamline-talk\";s:7:\"content\";s:5:\"\\e623\";}i:510;O:8:\"stdClass\":3:{s:4:\"name\";s:31:\"Caddie shop shopping streamline\";s:9:\"classname\";s:40:\".auxicon-caddie-shop-shopping-streamline\";s:7:\"content\";s:5:\"\\e624\";}i:511;O:8:\"stdClass\":3:{s:4:\"name\";s:26:\"Caddie shopping streamline\";s:9:\"classname\";s:35:\".auxicon-caddie-shopping-streamline\";s:7:\"content\";s:5:\"\\e625\";}i:512;O:8:\"stdClass\":3:{s:4:\"name\";s:32:\"Camera photo polaroid streamline\";s:9:\"classname\";s:41:\".auxicon-camera-photo-polaroid-streamline\";s:7:\"content\";s:5:\"\\e626\";}i:513;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Camera photo streamline\";s:9:\"classname\";s:32:\".auxicon-camera-photo-streamline\";s:7:\"content\";s:5:\"\\e627\";}i:514;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Camera streamline video\";s:9:\"classname\";s:32:\".auxicon-camera-streamline-video\";s:7:\"content\";s:5:\"\\e628\";}i:515;O:8:\"stdClass\":3:{s:4:\"name\";s:28:\"Chaplin hat movie streamline\";s:9:\"classname\";s:37:\".auxicon-chaplin-hat-movie-streamline\";s:7:\"content\";s:5:\"\\e629\";}i:516;O:8:\"stdClass\":3:{s:4:\"name\";s:31:\"Chef food restaurant streamline\";s:9:\"classname\";s:40:\".auxicon-chef-food-restaurant-streamline\";s:7:\"content\";s:5:\"\\e62a\";}i:517;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Clock streamline time\";s:9:\"classname\";s:30:\".auxicon-clock-streamline-time\";s:7:\"content\";s:5:\"\\e62b\";}i:518;O:8:\"stdClass\":3:{s:4:\"name\";s:26:\"Cocktail mojito streamline\";s:9:\"classname\";s:35:\".auxicon-cocktail-mojito-streamline\";s:7:\"content\";s:5:\"\\e62c\";}i:519;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"Coffee streamline\";s:9:\"classname\";s:26:\".auxicon-coffee-streamline\";s:7:\"content\";s:5:\"\\e62d\";}i:520;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Computer imac\";s:9:\"classname\";s:22:\".auxicon-computer-imac\";s:7:\"content\";s:5:\"\\e62e\";}i:521;O:8:\"stdClass\":3:{s:4:\"name\";s:26:\"Computer macintosh vintage\";s:9:\"classname\";s:35:\".auxicon-computer-macintosh-vintage\";s:7:\"content\";s:5:\"\\e630\";}i:522;O:8:\"stdClass\":3:{s:4:\"name\";s:27:\"Computer network streamline\";s:9:\"classname\";s:36:\".auxicon-computer-network-streamline\";s:7:\"content\";s:5:\"\\e631\";}i:523;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Computer streamline\";s:9:\"classname\";s:28:\".auxicon-computer-streamline\";s:7:\"content\";s:5:\"\\e632\";}i:524;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Cook pan pot streamline\";s:9:\"classname\";s:32:\".auxicon-cook-pan-pot-streamline\";s:7:\"content\";s:5:\"\\e633\";}i:525;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Crop streamline\";s:9:\"classname\";s:24:\".auxicon-crop-streamline\";s:7:\"content\";s:5:\"\\e634\";}i:526;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Crown king streamline\";s:9:\"classname\";s:30:\".auxicon-crown-king-streamline\";s:7:\"content\";s:5:\"\\e635\";}i:527;O:8:\"stdClass\":3:{s:4:\"name\";s:40:\"Danger death delete destroy skull stream\";s:9:\"classname\";s:49:\".auxicon-danger-death-delete-destroy-skull-stream\";s:7:\"content\";s:5:\"\\e636\";}i:528;O:8:\"stdClass\":3:{s:4:\"name\";s:26:\"Dashboard speed streamline\";s:9:\"classname\";s:35:\".auxicon-dashboard-speed-streamline\";s:7:\"content\";s:5:\"\\e637\";}i:529;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Database streamline\";s:9:\"classname\";s:28:\".auxicon-database-streamline\";s:7:\"content\";s:5:\"\\e638\";}i:530;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Delete garbage streamline\";s:9:\"classname\";s:34:\".auxicon-delete-garbage-streamline\";s:7:\"content\";s:5:\"\\e639\";}i:531;O:8:\"stdClass\":3:{s:4:\"name\";s:39:\"Design graphic tablet streamline tablet\";s:9:\"classname\";s:48:\".auxicon-design-graphic-tablet-streamline-tablet\";s:7:\"content\";s:5:\"\\e63a\";}i:532;O:8:\"stdClass\":3:{s:4:\"name\";s:29:\"Design pencil rule streamline\";s:9:\"classname\";s:38:\".auxicon-design-pencil-rule-streamline\";s:7:\"content\";s:5:\"\\e63b\";}i:533;O:8:\"stdClass\":3:{s:4:\"name\";s:35:\"Diving leisure sea sport streamline\";s:9:\"classname\";s:44:\".auxicon-diving-leisure-sea-sport-streamline\";s:7:\"content\";s:5:\"\\e63c\";}i:534;O:8:\"stdClass\":3:{s:4:\"name\";s:33:\"Drug medecine streamline syringue\";s:9:\"classname\";s:42:\".auxicon-drug-medecine-streamline-syringue\";s:7:\"content\";s:5:\"\\e63d\";}i:535;O:8:\"stdClass\":3:{s:4:\"name\";s:22:\"Earth globe streamline\";s:9:\"classname\";s:31:\".auxicon-earth-globe-streamline\";s:7:\"content\";s:5:\"\\e63e\";}i:536;O:8:\"stdClass\":3:{s:4:\"name\";s:30:\"Eat food fork knife streamline\";s:9:\"classname\";s:39:\".auxicon-eat-food-fork-knife-streamline\";s:7:\"content\";s:5:\"\\e63f\";}i:537;O:8:\"stdClass\":3:{s:4:\"name\";s:26:\"Eat food hotdog streamline\";s:9:\"classname\";s:35:\".auxicon-eat-food-hotdog-streamline\";s:7:\"content\";s:5:\"\\e640\";}i:538;O:8:\"stdClass\":3:{s:4:\"name\";s:22:\"Eye dropper streamline\";s:9:\"classname\";s:31:\".auxicon-eye-dropper-streamline\";s:7:\"content\";s:5:\"\\e644\";}i:539;O:8:\"stdClass\":3:{s:4:\"name\";s:33:\"Factory lift streamline warehouse\";s:9:\"classname\";s:42:\".auxicon-factory-lift-streamline-warehouse\";s:7:\"content\";s:5:\"\\e645\";}i:540;O:8:\"stdClass\":3:{s:4:\"name\";s:36:\"First aid medecine shield streamline\";s:9:\"classname\";s:45:\".auxicon-first-aid-medecine-shield-streamline\";s:7:\"content\";s:5:\"\\e646\";}i:541;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Food ice cream streamline\";s:9:\"classname\";s:34:\".auxicon-food-ice-cream-streamline\";s:7:\"content\";s:5:\"\\e647\";}i:542;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Frame picture streamline\";s:9:\"classname\";s:33:\".auxicon-frame-picture-streamline\";s:7:\"content\";s:5:\"\\e648\";}i:543;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Handle streamline vector\";s:9:\"classname\";s:33:\".auxicon-handle-streamline-vector\";s:7:\"content\";s:5:\"\\e64a\";}i:544;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Happy smiley streamline\";s:9:\"classname\";s:32:\".auxicon-happy-smiley-streamline\";s:7:\"content\";s:5:\"\\e64b\";}i:545;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Headset sound streamline\";s:9:\"classname\";s:33:\".auxicon-headset-sound-streamline\";s:7:\"content\";s:5:\"\\e64c\";}i:546;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Home house streamline\";s:9:\"classname\";s:30:\".auxicon-home-house-streamline\";s:7:\"content\";s:5:\"\\e64d\";}i:547;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Ibook laptop\";s:9:\"classname\";s:21:\".auxicon-ibook-laptop\";s:7:\"content\";s:5:\"\\e64e\";}i:548;O:8:\"stdClass\":3:{s:4:\"name\";s:18:\"Ink pen streamline\";s:9:\"classname\";s:27:\".auxicon-ink-pen-streamline\";s:7:\"content\";s:5:\"\\e64f\";}i:549;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Ipad streamline\";s:9:\"classname\";s:24:\".auxicon-ipad-streamline\";s:7:\"content\";s:5:\"\\e650\";}i:550;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"Iphone streamline\";s:9:\"classname\";s:26:\".auxicon-iphone-streamline\";s:7:\"content\";s:5:\"\\e651\";}i:551;O:8:\"stdClass\":3:{s:4:\"name\";s:26:\"Ipod mini music streamline\";s:9:\"classname\";s:35:\".auxicon-ipod-mini-music-streamline\";s:7:\"content\";s:5:\"\\e652\";}i:552;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Ipod music streamline\";s:9:\"classname\";s:30:\".auxicon-ipod-music-streamline\";s:7:\"content\";s:5:\"\\e653\";}i:553;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Ipod streamline\";s:9:\"classname\";s:24:\".auxicon-ipod-streamline\";s:7:\"content\";s:5:\"\\e654\";}i:554;O:8:\"stdClass\":3:{s:4:\"name\";s:20:\"Japan streamline tea\";s:9:\"classname\";s:29:\".auxicon-japan-streamline-tea\";s:7:\"content\";s:5:\"\\e655\";}i:555;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Laptop macbook streamline\";s:9:\"classname\";s:34:\".auxicon-laptop-macbook-streamline\";s:7:\"content\";s:5:\"\\e656\";}i:556;O:8:\"stdClass\":3:{s:4:\"name\";s:20:\"Like love streamline\";s:9:\"classname\";s:29:\".auxicon-like-love-streamline\";s:7:\"content\";s:5:\"\\e657\";}i:557;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Link streamline\";s:9:\"classname\";s:24:\".auxicon-link-streamline\";s:7:\"content\";s:5:\"\\e658\";}i:558;O:8:\"stdClass\":3:{s:4:\"name\";s:22:\"Lock locker streamline\";s:9:\"classname\";s:31:\".auxicon-lock-locker-streamline\";s:7:\"content\";s:5:\"\\e659\";}i:559;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Locker streamline unlock\";s:9:\"classname\";s:33:\".auxicon-locker-streamline-unlock\";s:7:\"content\";s:5:\"\\e65a\";}i:560;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Macintosh\";s:9:\"classname\";s:18:\".auxicon-macintosh\";s:7:\"content\";s:5:\"\\e65b\";}i:561;O:8:\"stdClass\":3:{s:4:\"name\";s:27:\"Magic magic wand streamline\";s:9:\"classname\";s:36:\".auxicon-magic-magic-wand-streamline\";s:7:\"content\";s:5:\"\\e65c\";}i:562;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"Magnet streamline\";s:9:\"classname\";s:26:\".auxicon-magnet-streamline\";s:7:\"content\";s:5:\"\\e65d\";}i:563;O:8:\"stdClass\":3:{s:4:\"name\";s:26:\"Man people streamline user\";s:9:\"classname\";s:35:\".auxicon-man-people-streamline-user\";s:7:\"content\";s:5:\"\\e65e\";}i:564;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Map streamline user\";s:9:\"classname\";s:28:\".auxicon-map-streamline-user\";s:7:\"content\";s:5:\"\\e660\";}i:565;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Micro record streamline\";s:9:\"classname\";s:32:\".auxicon-micro-record-streamline\";s:7:\"content\";s:5:\"\\e661\";}i:566;O:8:\"stdClass\":3:{s:4:\"name\";s:27:\"Monocle mustache streamline\";s:9:\"classname\";s:36:\".auxicon-monocle-mustache-streamline\";s:7:\"content\";s:5:\"\\e662\";}i:567;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Music note streamline\";s:9:\"classname\";s:30:\".auxicon-music-note-streamline\";s:7:\"content\";s:5:\"\\e663\";}i:568;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Music speaker streamline\";s:9:\"classname\";s:33:\".auxicon-music-speaker-streamline\";s:7:\"content\";s:5:\"\\e664\";}i:569;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Notebook streamline\";s:9:\"classname\";s:28:\".auxicon-notebook-streamline\";s:7:\"content\";s:5:\"\\e665\";}i:570;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Paint bucket streamline\";s:9:\"classname\";s:32:\".auxicon-paint-bucket-streamline\";s:7:\"content\";s:5:\"\\e666\";}i:571;O:8:\"stdClass\":3:{s:4:\"name\";s:26:\"Painting pallet streamline\";s:9:\"classname\";s:35:\".auxicon-painting-pallet-streamline\";s:7:\"content\";s:5:\"\\e667\";}i:572;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Painting roll streamline\";s:9:\"classname\";s:33:\".auxicon-painting-roll-streamline\";s:7:\"content\";s:5:\"\\e668\";}i:573;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Pen streamline\";s:9:\"classname\";s:23:\".auxicon-pen-streamline\";s:7:\"content\";s:5:\"\\e669\";}i:574;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Pen streamline 1\";s:9:\"classname\";s:25:\".auxicon-pen-streamline-1\";s:7:\"content\";s:5:\"\\e66a\";}i:575;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Pen streamline 2\";s:9:\"classname\";s:25:\".auxicon-pen-streamline-2\";s:7:\"content\";s:5:\"\\e66b\";}i:576;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Pen streamline 3\";s:9:\"classname\";s:25:\".auxicon-pen-streamline-3\";s:7:\"content\";s:5:\"\\e66c\";}i:577;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Photo pictures streamline\";s:9:\"classname\";s:34:\".auxicon-photo-pictures-streamline\";s:7:\"content\";s:5:\"\\e66d\";}i:578;O:8:\"stdClass\":3:{s:4:\"name\";s:18:\"Picture streamline\";s:9:\"classname\";s:27:\".auxicon-picture-streamline\";s:7:\"content\";s:5:\"\\e66e\";}i:579;O:8:\"stdClass\":3:{s:4:\"name\";s:20:\"Picture streamline 1\";s:9:\"classname\";s:29:\".auxicon-picture-streamline-1\";s:7:\"content\";s:5:\"\\e66f\";}i:580;O:8:\"stdClass\":3:{s:4:\"name\";s:27:\"Receipt shopping streamline\";s:9:\"classname\";s:36:\".auxicon-receipt-shopping-streamline\";s:7:\"content\";s:5:\"\\e670\";}i:581;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Remote control streamline\";s:9:\"classname\";s:34:\".auxicon-remote-control-streamline\";s:7:\"content\";s:5:\"\\e671\";}i:582;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Settings streamline\";s:9:\"classname\";s:28:\".auxicon-settings-streamline\";s:7:\"content\";s:5:\"\\e672\";}i:583;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Settings streamline 1\";s:9:\"classname\";s:30:\".auxicon-settings-streamline-1\";s:7:\"content\";s:5:\"\\e673\";}i:584;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Settings streamline 2\";s:9:\"classname\";s:30:\".auxicon-settings-streamline-2\";s:7:\"content\";s:5:\"\\e674\";}i:585;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Shoes snickers streamline\";s:9:\"classname\";s:34:\".auxicon-shoes-snickers-streamline\";s:7:\"content\";s:5:\"\\e675\";}i:586;O:8:\"stdClass\":3:{s:4:\"name\";s:27:\"Speech streamline talk user\";s:9:\"classname\";s:36:\".auxicon-speech-streamline-talk-user\";s:7:\"content\";s:5:\"\\e676\";}i:587;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Stamp streamline\";s:9:\"classname\";s:25:\".auxicon-stamp-streamline\";s:7:\"content\";s:5:\"\\e677\";}i:588;O:8:\"stdClass\":3:{s:4:\"name\";s:26:\"Streamline suitcase travel\";s:9:\"classname\";s:35:\".auxicon-streamline-suitcase-travel\";s:7:\"content\";s:5:\"\\e678\";}i:589;O:8:\"stdClass\":3:{s:4:\"name\";s:27:\"Streamline umbrella weather\";s:9:\"classname\";s:36:\".auxicon-streamline-umbrella-weather\";s:7:\"content\";s:5:\"\\e67a\";}i:590;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Align center\";s:9:\"classname\";s:21:\".auxicon-align-center\";s:7:\"content\";s:5:\"\\e67b\";}i:591;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Align justify\";s:9:\"classname\";s:22:\".auxicon-align-justify\";s:7:\"content\";s:5:\"\\e67c\";}i:592;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Align left\";s:9:\"classname\";s:19:\".auxicon-align-left\";s:7:\"content\";s:5:\"\\e67d\";}i:593;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Align right\";s:9:\"classname\";s:20:\".auxicon-align-right\";s:7:\"content\";s:5:\"\\e67e\";}i:594;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Archive 1\";s:9:\"classname\";s:18:\".auxicon-archive-1\";s:7:\"content\";s:5:\"\\e67f\";}i:595;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Arrow down 3\";s:9:\"classname\";s:21:\".auxicon-arrow-down-3\";s:7:\"content\";s:5:\"\\e680\";}i:596;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Arrow left 3\";s:9:\"classname\";s:21:\".auxicon-arrow-left-3\";s:7:\"content\";s:5:\"\\e681\";}i:597;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Arrow right 3\";s:9:\"classname\";s:22:\".auxicon-arrow-right-3\";s:7:\"content\";s:5:\"\\e682\";}i:598;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Arrow up 3\";s:9:\"classname\";s:19:\".auxicon-arrow-up-3\";s:7:\"content\";s:5:\"\\e683\";}i:599;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Atom\";s:9:\"classname\";s:13:\".auxicon-atom\";s:7:\"content\";s:5:\"\\e684\";}i:600;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Bank notes\";s:9:\"classname\";s:19:\".auxicon-bank-notes\";s:7:\"content\";s:5:\"\\e686\";}i:601;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Barbell\";s:9:\"classname\";s:16:\".auxicon-barbell\";s:7:\"content\";s:5:\"\\e687\";}i:602;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Bars\";s:9:\"classname\";s:13:\".auxicon-bars\";s:7:\"content\";s:5:\"\\e688\";}i:603;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Battery 0\";s:9:\"classname\";s:18:\".auxicon-battery-0\";s:7:\"content\";s:5:\"\\e689\";}i:604;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Battery 1 1\";s:9:\"classname\";s:20:\".auxicon-battery-1-1\";s:7:\"content\";s:5:\"\\e68a\";}i:605;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Battery 2 1\";s:9:\"classname\";s:20:\".auxicon-battery-2-1\";s:7:\"content\";s:5:\"\\e68b\";}i:606;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Battery 3 1\";s:9:\"classname\";s:20:\".auxicon-battery-3-1\";s:7:\"content\";s:5:\"\\e68c\";}i:607;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Battery 4 1\";s:9:\"classname\";s:20:\".auxicon-battery-4-1\";s:7:\"content\";s:5:\"\\e68d\";}i:608;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Battery power\";s:9:\"classname\";s:22:\".auxicon-battery-power\";s:7:\"content\";s:5:\"\\e68e\";}i:609;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Beer 2\";s:9:\"classname\";s:15:\".auxicon-beer-2\";s:7:\"content\";s:5:\"\\e68f\";}i:610;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Bolt\";s:9:\"classname\";s:13:\".auxicon-bolt\";s:7:\"content\";s:5:\"\\e690\";}i:611;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Bones\";s:9:\"classname\";s:14:\".auxicon-bones\";s:7:\"content\";s:5:\"\\e691\";}i:612;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Book close\";s:9:\"classname\";s:19:\".auxicon-book-close\";s:7:\"content\";s:5:\"\\e692\";}i:613;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Book open\";s:9:\"classname\";s:18:\".auxicon-book-open\";s:7:\"content\";s:5:\"\\e693\";}i:614;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Bookmark 4\";s:9:\"classname\";s:19:\".auxicon-bookmark-4\";s:7:\"content\";s:5:\"\\e694\";}i:615;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Box 3\";s:9:\"classname\";s:14:\".auxicon-box-3\";s:7:\"content\";s:5:\"\\e695\";}i:616;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Browser 2\";s:9:\"classname\";s:18:\".auxicon-browser-2\";s:7:\"content\";s:5:\"\\e696\";}i:617;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Bubble\";s:9:\"classname\";s:15:\".auxicon-bubble\";s:7:\"content\";s:5:\"\\e697\";}i:618;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Bubble 1\";s:9:\"classname\";s:17:\".auxicon-bubble-1\";s:7:\"content\";s:5:\"\\e698\";}i:619;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Bubble 2\";s:9:\"classname\";s:17:\".auxicon-bubble-2\";s:7:\"content\";s:5:\"\\e699\";}i:620;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Bubble 3\";s:9:\"classname\";s:17:\".auxicon-bubble-3\";s:7:\"content\";s:5:\"\\e69a\";}i:621;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Bucket\";s:9:\"classname\";s:15:\".auxicon-bucket\";s:7:\"content\";s:5:\"\\e69b\";}i:622;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Calculator 3\";s:9:\"classname\";s:21:\".auxicon-calculator-3\";s:7:\"content\";s:5:\"\\e69c\";}i:623;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Calendar 6\";s:9:\"classname\";s:19:\".auxicon-calendar-6\";s:7:\"content\";s:5:\"\\e69d\";}i:624;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Camera 4\";s:9:\"classname\";s:17:\".auxicon-camera-4\";s:7:\"content\";s:5:\"\\e69e\";}i:625;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Cardiac pulse\";s:9:\"classname\";s:22:\".auxicon-cardiac-pulse\";s:7:\"content\";s:5:\"\\e69f\";}i:626;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Cd 1\";s:9:\"classname\";s:13:\".auxicon-cd-1\";s:7:\"content\";s:5:\"\\e6a0\";}i:627;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Character\";s:9:\"classname\";s:18:\".auxicon-character\";s:7:\"content\";s:5:\"\\e6a1\";}i:628;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Checkbox checked\";s:9:\"classname\";s:25:\".auxicon-checkbox-checked\";s:7:\"content\";s:5:\"\\e6a2\";}i:629;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Checkmark\";s:9:\"classname\";s:18:\".auxicon-checkmark\";s:7:\"content\";s:5:\"\\e6a3\";}i:630;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Clipboard 3\";s:9:\"classname\";s:20:\".auxicon-clipboard-3\";s:7:\"content\";s:5:\"\\e6a4\";}i:631;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Clock 4\";s:9:\"classname\";s:16:\".auxicon-clock-4\";s:7:\"content\";s:5:\"\\e6a5\";}i:632;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Cloud 5\";s:9:\"classname\";s:16:\".auxicon-cloud-5\";s:7:\"content\";s:5:\"\\e6a6\";}i:633;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Coffee 1\";s:9:\"classname\";s:17:\".auxicon-coffee-1\";s:7:\"content\";s:5:\"\\e6a7\";}i:634;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Comment 2\";s:9:\"classname\";s:18:\".auxicon-comment-2\";s:7:\"content\";s:5:\"\\e6a8\";}i:635;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Connection 0\";s:9:\"classname\";s:21:\".auxicon-connection-0\";s:7:\"content\";s:5:\"\\e6a9\";}i:636;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Connection 1\";s:9:\"classname\";s:21:\".auxicon-connection-1\";s:7:\"content\";s:5:\"\\e6aa\";}i:637;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Connection 2\";s:9:\"classname\";s:21:\".auxicon-connection-2\";s:7:\"content\";s:5:\"\\e6ab\";}i:638;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Connection 3\";s:9:\"classname\";s:21:\".auxicon-connection-3\";s:7:\"content\";s:5:\"\\e6ac\";}i:639;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Connection 4\";s:9:\"classname\";s:21:\".auxicon-connection-4\";s:7:\"content\";s:5:\"\\e6ad\";}i:640;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Credit cards\";s:9:\"classname\";s:21:\".auxicon-credit-cards\";s:7:\"content\";s:5:\"\\e6ae\";}i:641;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Crop\";s:9:\"classname\";s:13:\".auxicon-crop\";s:7:\"content\";s:5:\"\\e6af\";}i:642;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Cube\";s:9:\"classname\";s:13:\".auxicon-cube\";s:7:\"content\";s:5:\"\\e6b0\";}i:643;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Diamond 1\";s:9:\"classname\";s:18:\".auxicon-diamond-1\";s:7:\"content\";s:5:\"\\e6b1\";}i:644;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Download 5\";s:9:\"classname\";s:19:\".auxicon-download-5\";s:7:\"content\";s:5:\"\\e6b2\";}i:645;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Email\";s:9:\"classname\";s:14:\".auxicon-email\";s:7:\"content\";s:5:\"\\e6b3\";}i:646;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Email plane\";s:9:\"classname\";s:20:\".auxicon-email-plane\";s:7:\"content\";s:5:\"\\e6b4\";}i:647;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Enter\";s:9:\"classname\";s:14:\".auxicon-enter\";s:7:\"content\";s:5:\"\\e6b5\";}i:648;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Envelope 1\";s:9:\"classname\";s:19:\".auxicon-envelope-1\";s:7:\"content\";s:5:\"\\e6b6\";}i:649;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Eyedropper\";s:9:\"classname\";s:19:\".auxicon-eyedropper\";s:7:\"content\";s:5:\"\\e6b7\";}i:650;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"File 1\";s:9:\"classname\";s:15:\".auxicon-file-1\";s:7:\"content\";s:5:\"\\e6b8\";}i:651;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"File add\";s:9:\"classname\";s:17:\".auxicon-file-add\";s:7:\"content\";s:5:\"\\e6b9\";}i:652;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"File broken\";s:9:\"classname\";s:20:\".auxicon-file-broken\";s:7:\"content\";s:5:\"\\e6ba\";}i:653;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"File settings\";s:9:\"classname\";s:22:\".auxicon-file-settings\";s:7:\"content\";s:5:\"\\e6bb\";}i:654;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Files\";s:9:\"classname\";s:14:\".auxicon-files\";s:7:\"content\";s:5:\"\\e6bc\";}i:655;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Flag 3\";s:9:\"classname\";s:15:\".auxicon-flag-3\";s:7:\"content\";s:5:\"\\e6bd\";}i:656;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Folder 3\";s:9:\"classname\";s:17:\".auxicon-folder-3\";s:7:\"content\";s:5:\"\\e6be\";}i:657;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Folder add\";s:9:\"classname\";s:19:\".auxicon-folder-add\";s:7:\"content\";s:5:\"\\e6bf\";}i:658;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Folder check\";s:9:\"classname\";s:21:\".auxicon-folder-check\";s:7:\"content\";s:5:\"\\e6c0\";}i:659;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Folder settings\";s:9:\"classname\";s:24:\".auxicon-folder-settings\";s:7:\"content\";s:5:\"\\e6c1\";}i:660;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Forbidden\";s:9:\"classname\";s:18:\".auxicon-forbidden\";s:7:\"content\";s:5:\"\\e6c2\";}i:661;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Frames\";s:9:\"classname\";s:15:\".auxicon-frames\";s:7:\"content\";s:5:\"\\e6c3\";}i:662;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Glass\";s:9:\"classname\";s:14:\".auxicon-glass\";s:7:\"content\";s:5:\"\\e6c4\";}i:663;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Graph 1\";s:9:\"classname\";s:16:\".auxicon-graph-1\";s:7:\"content\";s:5:\"\\e6c5\";}i:664;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Grid 3\";s:9:\"classname\";s:15:\".auxicon-grid-3\";s:7:\"content\";s:5:\"\\e6c6\";}i:665;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Heart 4\";s:9:\"classname\";s:16:\".auxicon-heart-4\";s:7:\"content\";s:5:\"\\e6c7\";}i:666;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Home 6\";s:9:\"classname\";s:15:\".auxicon-home-6\";s:7:\"content\";s:5:\"\\e6c8\";}i:667;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Id card\";s:9:\"classname\";s:16:\".auxicon-id-card\";s:7:\"content\";s:5:\"\\e6c9\";}i:668;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Invoice\";s:9:\"classname\";s:16:\".auxicon-invoice\";s:7:\"content\";s:5:\"\\e6ca\";}i:669;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Ipad 2\";s:9:\"classname\";s:15:\".auxicon-ipad-2\";s:7:\"content\";s:5:\"\\e6cc\";}i:670;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Lab\";s:9:\"classname\";s:12:\".auxicon-lab\";s:7:\"content\";s:5:\"\\e6cd\";}i:671;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Laptop 1\";s:9:\"classname\";s:17:\".auxicon-laptop-1\";s:7:\"content\";s:5:\"\\e6ce\";}i:672;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"List 3\";s:9:\"classname\";s:15:\".auxicon-list-3\";s:7:\"content\";s:5:\"\\e6cf\";}i:673;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Lock 2\";s:9:\"classname\";s:15:\".auxicon-lock-2\";s:7:\"content\";s:5:\"\\e6d0\";}i:674;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Locked\";s:9:\"classname\";s:15:\".auxicon-locked\";s:7:\"content\";s:5:\"\\e6d1\";}i:675;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Map 4\";s:9:\"classname\";s:14:\".auxicon-map-4\";s:7:\"content\";s:5:\"\\e6d2\";}i:676;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Measure\";s:9:\"classname\";s:16:\".auxicon-measure\";s:7:\"content\";s:5:\"\\e6d3\";}i:677;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Meter\";s:9:\"classname\";s:14:\".auxicon-meter\";s:7:\"content\";s:5:\"\\e6d4\";}i:678;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Micro\";s:9:\"classname\";s:14:\".auxicon-micro\";s:7:\"content\";s:5:\"\\e6d5\";}i:679;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Micro mute\";s:9:\"classname\";s:19:\".auxicon-micro-mute\";s:7:\"content\";s:5:\"\\e6d6\";}i:680;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Microwave\";s:9:\"classname\";s:18:\".auxicon-microwave\";s:7:\"content\";s:5:\"\\e6d7\";}i:681;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Minus 4\";s:9:\"classname\";s:16:\".auxicon-minus-4\";s:7:\"content\";s:5:\"\\e6d8\";}i:682;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Modem\";s:9:\"classname\";s:14:\".auxicon-modem\";s:7:\"content\";s:5:\"\\e6d9\";}i:683;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Mute 1\";s:9:\"classname\";s:15:\".auxicon-mute-1\";s:7:\"content\";s:5:\"\\e6da\";}i:684;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Newspaper 1\";s:9:\"classname\";s:20:\".auxicon-newspaper-1\";s:7:\"content\";s:5:\"\\e6db\";}i:685;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Paperclip\";s:9:\"classname\";s:18:\".auxicon-paperclip\";s:7:\"content\";s:5:\"\\e6dc\";}i:686;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Pencil 3\";s:9:\"classname\";s:17:\".auxicon-pencil-3\";s:7:\"content\";s:5:\"\\e6dd\";}i:687;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Phone 5\";s:9:\"classname\";s:16:\".auxicon-phone-5\";s:7:\"content\";s:5:\"\\e6df\";}i:688;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Phone 3\";s:9:\"classname\";s:16:\".auxicon-phone-3\";s:7:\"content\";s:5:\"\\e6e0\";}i:689;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Picture\";s:9:\"classname\";s:16:\".auxicon-picture\";s:7:\"content\";s:5:\"\\e6e1\";}i:690;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Pie chart\";s:9:\"classname\";s:18:\".auxicon-pie-chart\";s:7:\"content\";s:5:\"\\e6e2\";}i:691;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Pill\";s:9:\"classname\";s:13:\".auxicon-pill\";s:7:\"content\";s:5:\"\\e6e3\";}i:692;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Pin 4\";s:9:\"classname\";s:14:\".auxicon-pin-4\";s:7:\"content\";s:5:\"\\e6e4\";}i:693;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Printer 1\";s:9:\"classname\";s:18:\".auxicon-printer-1\";s:7:\"content\";s:5:\"\\e6e6\";}i:694;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Printer 2\";s:9:\"classname\";s:18:\".auxicon-printer-2\";s:7:\"content\";s:5:\"\\e6e7\";}i:695;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Refresh 3\";s:9:\"classname\";s:18:\".auxicon-refresh-3\";s:7:\"content\";s:5:\"\\e6e8\";}i:696;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Screen 3\";s:9:\"classname\";s:17:\".auxicon-screen-3\";s:7:\"content\";s:5:\"\\e6ea\";}i:697;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Select\";s:9:\"classname\";s:15:\".auxicon-select\";s:7:\"content\";s:5:\"\\e6eb\";}i:698;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Set\";s:9:\"classname\";s:12:\".auxicon-set\";s:7:\"content\";s:5:\"\\e6ec\";}i:699;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Settings 8\";s:9:\"classname\";s:19:\".auxicon-settings-8\";s:7:\"content\";s:5:\"\\e6ed\";}i:700;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Share 4\";s:9:\"classname\";s:16:\".auxicon-share-4\";s:7:\"content\";s:5:\"\\e6ee\";}i:701;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Share outline\";s:9:\"classname\";s:22:\".auxicon-share-outline\";s:7:\"content\";s:5:\"\\e6ef\";}i:702;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Shorts\";s:9:\"classname\";s:15:\".auxicon-shorts\";s:7:\"content\";s:5:\"\\e6f0\";}i:703;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Speaker 1\";s:9:\"classname\";s:18:\".auxicon-speaker-1\";s:7:\"content\";s:5:\"\\e6f1\";}i:704;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Star 4\";s:9:\"classname\";s:15:\".auxicon-star-4\";s:7:\"content\";s:5:\"\\e6f2\";}i:705;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Stopwatch 3\";s:9:\"classname\";s:20:\".auxicon-stopwatch-3\";s:7:\"content\";s:5:\"\\e6f3\";}i:706;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Sun\";s:9:\"classname\";s:12:\".auxicon-sun\";s:7:\"content\";s:5:\"\\e6f4\";}i:707;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Syringe\";s:9:\"classname\";s:16:\".auxicon-syringe\";s:7:\"content\";s:5:\"\\e6f5\";}i:708;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Tag 5\";s:9:\"classname\";s:14:\".auxicon-tag-5\";s:7:\"content\";s:5:\"\\e6f6\";}i:709;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Train\";s:9:\"classname\";s:14:\".auxicon-train\";s:7:\"content\";s:5:\"\\e6f7\";}i:710;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Trash 3\";s:9:\"classname\";s:16:\".auxicon-trash-3\";s:7:\"content\";s:5:\"\\e6f8\";}i:711;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Unlocked\";s:9:\"classname\";s:17:\".auxicon-unlocked\";s:7:\"content\";s:5:\"\\e6f9\";}i:712;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"User 4\";s:9:\"classname\";s:15:\".auxicon-user-4\";s:7:\"content\";s:5:\"\\e6fa\";}i:713;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"User outline\";s:9:\"classname\";s:21:\".auxicon-user-outline\";s:7:\"content\";s:5:\"\\e6fb\";}i:714;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Users 1\";s:9:\"classname\";s:16:\".auxicon-users-1\";s:7:\"content\";s:5:\"\\e6fc\";}i:715;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Users outline\";s:9:\"classname\";s:22:\".auxicon-users-outline\";s:7:\"content\";s:5:\"\\e6fd\";}i:716;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Volume\";s:9:\"classname\";s:15:\".auxicon-volume\";s:7:\"content\";s:5:\"\\e6fe\";}i:717;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Volume down\";s:9:\"classname\";s:20:\".auxicon-volume-down\";s:7:\"content\";s:5:\"\\e6ff\";}i:718;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Volume up\";s:9:\"classname\";s:18:\".auxicon-volume-up\";s:7:\"content\";s:5:\"\\e700\";}i:719;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Wifi 1\";s:9:\"classname\";s:15:\".auxicon-wifi-1\";s:7:\"content\";s:5:\"\\e701\";}i:720;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Wifi 2\";s:9:\"classname\";s:15:\".auxicon-wifi-2\";s:7:\"content\";s:5:\"\\e702\";}i:721;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Wifi 3\";s:9:\"classname\";s:15:\".auxicon-wifi-3\";s:7:\"content\";s:5:\"\\e703\";}i:722;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Window delete\";s:9:\"classname\";s:22:\".auxicon-window-delete\";s:7:\"content\";s:5:\"\\e704\";}i:723;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Windows 2\";s:9:\"classname\";s:18:\".auxicon-windows-2\";s:7:\"content\";s:5:\"\\e705\";}i:724;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Zoom\";s:9:\"classname\";s:13:\".auxicon-zoom\";s:7:\"content\";s:5:\"\\e706\";}i:725;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Zoom in 2\";s:9:\"classname\";s:18:\".auxicon-zoom-in-2\";s:7:\"content\";s:5:\"\\e707\";}i:726;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Zoom out 2\";s:9:\"classname\";s:19:\".auxicon-zoom-out-2\";s:7:\"content\";s:5:\"\\e708\";}i:727;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Banknote\";s:9:\"classname\";s:17:\".auxicon-banknote\";s:7:\"content\";s:5:\"\\e709\";}i:728;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Bubble 4\";s:9:\"classname\";s:17:\".auxicon-bubble-4\";s:7:\"content\";s:5:\"\\e70a\";}i:729;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Bulb\";s:9:\"classname\";s:13:\".auxicon-bulb\";s:7:\"content\";s:5:\"\\e70b\";}i:730;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Calendar 7\";s:9:\"classname\";s:19:\".auxicon-calendar-7\";s:7:\"content\";s:5:\"\\e70c\";}i:731;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Camera 5\";s:9:\"classname\";s:17:\".auxicon-camera-5\";s:7:\"content\";s:5:\"\\e70d\";}i:732;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Clip\";s:9:\"classname\";s:13:\".auxicon-clip\";s:7:\"content\";s:5:\"\\e70e\";}i:733;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Clock 5\";s:9:\"classname\";s:16:\".auxicon-clock-5\";s:7:\"content\";s:5:\"\\e70f\";}i:734;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Cloud 6\";s:9:\"classname\";s:16:\".auxicon-cloud-6\";s:7:\"content\";s:5:\"\\e710\";}i:735;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Cup\";s:9:\"classname\";s:12:\".auxicon-cup\";s:7:\"content\";s:5:\"\\e711\";}i:736;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Data 1\";s:9:\"classname\";s:15:\".auxicon-data-1\";s:7:\"content\";s:5:\"\\e712\";}i:737;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Diamond 2\";s:9:\"classname\";s:18:\".auxicon-diamond-2\";s:7:\"content\";s:5:\"\\e713\";}i:738;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Display\";s:9:\"classname\";s:16:\".auxicon-display\";s:7:\"content\";s:5:\"\\e714\";}i:739;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Fire\";s:9:\"classname\";s:13:\".auxicon-fire\";s:7:\"content\";s:5:\"\\e716\";}i:740;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Food\";s:9:\"classname\";s:13:\".auxicon-food\";s:7:\"content\";s:5:\"\\e717\";}i:741;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Heart 5\";s:9:\"classname\";s:16:\".auxicon-heart-5\";s:7:\"content\";s:5:\"\\e718\";}i:742;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Key 3\";s:9:\"classname\";s:14:\".auxicon-key-3\";s:7:\"content\";s:5:\"\\e719\";}i:743;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Lab 1\";s:9:\"classname\";s:14:\".auxicon-lab-1\";s:7:\"content\";s:5:\"\\e71a\";}i:744;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Like 1\";s:9:\"classname\";s:15:\".auxicon-like-1\";s:7:\"content\";s:5:\"\\e71b\";}i:745;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Location 2\";s:9:\"classname\";s:19:\".auxicon-location-2\";s:7:\"content\";s:5:\"\\e71c\";}i:746;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Lock 3\";s:9:\"classname\";s:15:\".auxicon-lock-3\";s:7:\"content\";s:5:\"\\e71d\";}i:747;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Mail 3\";s:9:\"classname\";s:15:\".auxicon-mail-3\";s:7:\"content\";s:5:\"\\e71e\";}i:748;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Megaphone 1\";s:9:\"classname\";s:20:\".auxicon-megaphone-1\";s:7:\"content\";s:5:\"\\e71f\";}i:749;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Music 3\";s:9:\"classname\";s:16:\".auxicon-music-3\";s:7:\"content\";s:5:\"\\e720\";}i:750;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"News 2\";s:9:\"classname\";s:15:\".auxicon-news-2\";s:7:\"content\";s:5:\"\\e721\";}i:751;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Note\";s:9:\"classname\";s:13:\".auxicon-note\";s:7:\"content\";s:5:\"\\e722\";}i:752;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Paperplane\";s:9:\"classname\";s:19:\".auxicon-paperplane\";s:7:\"content\";s:5:\"\\e723\";}i:753;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Params\";s:9:\"classname\";s:15:\".auxicon-params\";s:7:\"content\";s:5:\"\\e724\";}i:754;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Pen 3\";s:9:\"classname\";s:14:\".auxicon-pen-3\";s:7:\"content\";s:5:\"\\e725\";}i:755;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Phone 4\";s:9:\"classname\";s:16:\".auxicon-phone-4\";s:7:\"content\";s:5:\"\\e726\";}i:756;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Photo 1\";s:9:\"classname\";s:16:\".auxicon-photo-1\";s:7:\"content\";s:5:\"\\e727\";}i:757;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Search 5\";s:9:\"classname\";s:17:\".auxicon-search-5\";s:7:\"content\";s:5:\"\\e728\";}i:758;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Settings 9\";s:9:\"classname\";s:19:\".auxicon-settings-9\";s:7:\"content\";s:5:\"\\e729\";}i:759;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Shop 2\";s:9:\"classname\";s:15:\".auxicon-shop-2\";s:7:\"content\";s:5:\"\\e72a\";}i:760;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Sound 2\";s:9:\"classname\";s:16:\".auxicon-sound-2\";s:7:\"content\";s:5:\"\\e72b\";}i:761;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Stack\";s:9:\"classname\";s:14:\".auxicon-stack\";s:7:\"content\";s:5:\"\\e72c\";}i:762;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Star 5\";s:9:\"classname\";s:15:\".auxicon-star-5\";s:7:\"content\";s:5:\"\\e72d\";}i:763;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Study\";s:9:\"classname\";s:14:\".auxicon-study\";s:7:\"content\";s:5:\"\\e72e\";}i:764;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"T shirt\";s:9:\"classname\";s:16:\".auxicon-t-shirt\";s:7:\"content\";s:5:\"\\e72f\";}i:765;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Tag 6\";s:9:\"classname\";s:14:\".auxicon-tag-6\";s:7:\"content\";s:5:\"\\e730\";}i:766;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Trash 4\";s:9:\"classname\";s:16:\".auxicon-trash-4\";s:7:\"content\";s:5:\"\\e731\";}i:767;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Truck 3\";s:9:\"classname\";s:16:\".auxicon-truck-3\";s:7:\"content\";s:5:\"\\e732\";}i:768;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Tv 1\";s:9:\"classname\";s:13:\".auxicon-tv-1\";s:7:\"content\";s:5:\"\\e733\";}i:769;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"User 5\";s:9:\"classname\";s:15:\".auxicon-user-5\";s:7:\"content\";s:5:\"\\e734\";}i:770;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Vallet\";s:9:\"classname\";s:15:\".auxicon-vallet\";s:7:\"content\";s:5:\"\\e735\";}i:771;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Video 1\";s:9:\"classname\";s:16:\".auxicon-video-1\";s:7:\"content\";s:5:\"\\e736\";}i:772;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Vynil\";s:9:\"classname\";s:14:\".auxicon-vynil\";s:7:\"content\";s:5:\"\\e737\";}i:773;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"World\";s:9:\"classname\";s:14:\".auxicon-world\";s:7:\"content\";s:5:\"\\e738\";}i:774;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Bag 2\";s:9:\"classname\";s:14:\".auxicon-bag-2\";s:7:\"content\";s:5:\"\\e7d1\";}i:775;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Bicycle 1\";s:9:\"classname\";s:18:\".auxicon-bicycle-1\";s:7:\"content\";s:5:\"\\e7d2\";}i:776;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Bicycle vintage\";s:9:\"classname\";s:24:\".auxicon-bicycle-vintage\";s:7:\"content\";s:5:\"\\e7d3\";}i:777;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Browser empty\";s:9:\"classname\";s:22:\".auxicon-browser-empty\";s:7:\"content\";s:5:\"\\e7d4\";}i:778;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Browser full\";s:9:\"classname\";s:21:\".auxicon-browser-full\";s:7:\"content\";s:5:\"\\e7d5\";}i:779;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Bubble 1 1\";s:9:\"classname\";s:19:\".auxicon-bubble-1-1\";s:7:\"content\";s:5:\"\\e7d6\";}i:780;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Bubble 2 1\";s:9:\"classname\";s:19:\".auxicon-bubble-2-1\";s:7:\"content\";s:5:\"\\e7d7\";}i:781;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Bubble 3 1\";s:9:\"classname\";s:19:\".auxicon-bubble-3-1\";s:7:\"content\";s:5:\"\\e7d8\";}i:782;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Camera 6\";s:9:\"classname\";s:17:\".auxicon-camera-6\";s:7:\"content\";s:5:\"\\e7d9\";}i:783;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Clap board\";s:9:\"classname\";s:19:\".auxicon-clap-board\";s:7:\"content\";s:5:\"\\e7da\";}i:784;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Clipboard 4\";s:9:\"classname\";s:20:\".auxicon-clipboard-4\";s:7:\"content\";s:5:\"\\e7db\";}i:785;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Clock 6\";s:9:\"classname\";s:16:\".auxicon-clock-6\";s:7:\"content\";s:5:\"\\e7dc\";}i:786;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Cloud 7\";s:9:\"classname\";s:16:\".auxicon-cloud-7\";s:7:\"content\";s:5:\"\\e7dd\";}i:787;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Cloudy\";s:9:\"classname\";s:15:\".auxicon-cloudy\";s:7:\"content\";s:5:\"\\e7de\";}i:788;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Envelope 2\";s:9:\"classname\";s:19:\".auxicon-envelope-2\";s:7:\"content\";s:5:\"\\e7df\";}i:789;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"File ai\";s:9:\"classname\";s:16:\".auxicon-file-ai\";s:7:\"content\";s:5:\"\\e7e0\";}i:790;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"File jpg\";s:9:\"classname\";s:17:\".auxicon-file-jpg\";s:7:\"content\";s:5:\"\\e7e1\";}i:791;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"File png\";s:9:\"classname\";s:17:\".auxicon-file-png\";s:7:\"content\";s:5:\"\\e7e2\";}i:792;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"File psd\";s:9:\"classname\";s:17:\".auxicon-file-psd\";s:7:\"content\";s:5:\"\\e7e3\";}i:793;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"File text 1\";s:9:\"classname\";s:20:\".auxicon-file-text-1\";s:7:\"content\";s:5:\"\\e7e4\";}i:794;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Graph 2\";s:9:\"classname\";s:16:\".auxicon-graph-2\";s:7:\"content\";s:5:\"\\e7e5\";}i:795;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Hierarchy 1\";s:9:\"classname\";s:20:\".auxicon-hierarchy-1\";s:7:\"content\";s:5:\"\\e7e7\";}i:796;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Hierarchy 2\";s:9:\"classname\";s:20:\".auxicon-hierarchy-2\";s:7:\"content\";s:5:\"\\e7e8\";}i:797;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Imac\";s:9:\"classname\";s:13:\".auxicon-imac\";s:7:\"content\";s:5:\"\\e7e9\";}i:798;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Ipad 3\";s:9:\"classname\";s:15:\".auxicon-ipad-3\";s:7:\"content\";s:5:\"\\e7ea\";}i:799;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Iphone 1\";s:9:\"classname\";s:17:\".auxicon-iphone-1\";s:7:\"content\";s:5:\"\\e7eb\";}i:800;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Keyboard 3\";s:9:\"classname\";s:19:\".auxicon-keyboard-3\";s:7:\"content\";s:5:\"\\e7ec\";}i:801;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Laptop 2\";s:9:\"classname\";s:17:\".auxicon-laptop-2\";s:7:\"content\";s:5:\"\\e7ed\";}i:802;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Line\";s:9:\"classname\";s:13:\".auxicon-line\";s:7:\"content\";s:5:\"\\e7ee\";}i:803;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"List 4\";s:9:\"classname\";s:15:\".auxicon-list-4\";s:7:\"content\";s:5:\"\\e7ef\";}i:804;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"List thumbnails\";s:9:\"classname\";s:24:\".auxicon-list-thumbnails\";s:7:\"content\";s:5:\"\\e7f0\";}i:805;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Lock 4\";s:9:\"classname\";s:15:\".auxicon-lock-4\";s:7:\"content\";s:5:\"\\e7f1\";}i:806;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Magnifier\";s:9:\"classname\";s:18:\".auxicon-magnifier\";s:7:\"content\";s:5:\"\\e7f2\";}i:807;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Map 5\";s:9:\"classname\";s:14:\".auxicon-map-5\";s:7:\"content\";s:5:\"\\e7f3\";}i:808;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Map pin\";s:9:\"classname\";s:16:\".auxicon-map-pin\";s:7:\"content\";s:5:\"\\e7f4\";}i:809;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Moon 2\";s:9:\"classname\";s:15:\".auxicon-moon-2\";s:7:\"content\";s:5:\"\\e7f5\";}i:810;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Mouse 1\";s:9:\"classname\";s:16:\".auxicon-mouse-1\";s:7:\"content\";s:5:\"\\e7f6\";}i:811;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Pencil 4\";s:9:\"classname\";s:17:\".auxicon-pencil-4\";s:7:\"content\";s:5:\"\\e7f7\";}i:812;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Pencil ruler\";s:9:\"classname\";s:21:\".auxicon-pencil-ruler\";s:7:\"content\";s:5:\"\\e7f8\";}i:813;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Picture 1\";s:9:\"classname\";s:18:\".auxicon-picture-1\";s:7:\"content\";s:5:\"\\e7f9\";}i:814;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Rain\";s:9:\"classname\";s:13:\".auxicon-rain\";s:7:\"content\";s:5:\"\\e7fa\";}i:815;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Ribbon\";s:9:\"classname\";s:15:\".auxicon-ribbon\";s:7:\"content\";s:5:\"\\e7fb\";}i:816;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Shoe\";s:9:\"classname\";s:13:\".auxicon-shoe\";s:7:\"content\";s:5:\"\\e7fc\";}i:817;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Speaker 2\";s:9:\"classname\";s:18:\".auxicon-speaker-2\";s:7:\"content\";s:5:\"\\e7fd\";}i:818;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Speaker off 1\";s:9:\"classname\";s:22:\".auxicon-speaker-off-1\";s:7:\"content\";s:5:\"\\e7fe\";}i:819;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Sun 1\";s:9:\"classname\";s:14:\".auxicon-sun-1\";s:7:\"content\";s:5:\"\\e7ff\";}i:820;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Tape\";s:9:\"classname\";s:13:\".auxicon-tape\";s:7:\"content\";s:5:\"\\e800\";}i:821;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Target 1\";s:9:\"classname\";s:17:\".auxicon-target-1\";s:7:\"content\";s:5:\"\\e801\";}i:822;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Unlock 1\";s:9:\"classname\";s:17:\".auxicon-unlock-1\";s:7:\"content\";s:5:\"\\e802\";}i:823;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Facebook 3\";s:9:\"classname\";s:19:\".auxicon-facebook-3\";s:7:\"content\";s:5:\"\\e0b7\";}i:824;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Notebook\";s:9:\"classname\";s:17:\".auxicon-notebook\";s:7:\"content\";s:5:\"\\e02d\";}i:825;O:8:\"stdClass\":3:{s:4:\"name\";s:22:\"Edit modify streamline\";s:9:\"classname\";s:31:\".auxicon-edit-modify-streamline\";s:7:\"content\";s:5:\"\\e641\";}i:826;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Download 2\";s:9:\"classname\";s:19:\".auxicon-download-2\";s:7:\"content\";s:5:\"\\e053\";}i:827;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Linkedin\";s:9:\"classname\";s:17:\".auxicon-linkedin\";s:7:\"content\";s:5:\"\\e19f\";}i:828;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Facebook\";s:9:\"classname\";s:17:\".auxicon-facebook\";s:7:\"content\";s:5:\"\\e1a0\";}i:829;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Vimeo\";s:9:\"classname\";s:14:\".auxicon-vimeo\";s:7:\"content\";s:5:\"\\e1a1\";}i:830;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Flickr\";s:9:\"classname\";s:15:\".auxicon-flickr\";s:7:\"content\";s:5:\"\\e1a3\";}i:831;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Instagram\";s:9:\"classname\";s:18:\".auxicon-instagram\";s:7:\"content\";s:5:\"\\e1a4\";}i:832;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Tumblr\";s:9:\"classname\";s:15:\".auxicon-tumblr\";s:7:\"content\";s:5:\"\\e1a5\";}i:833;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Behance\";s:9:\"classname\";s:16:\".auxicon-behance\";s:7:\"content\";s:5:\"\\e1a6\";}i:834;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Wordpress\";s:9:\"classname\";s:18:\".auxicon-wordpress\";s:7:\"content\";s:5:\"\\e1a7\";}i:835;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Vimeo 1\";s:9:\"classname\";s:16:\".auxicon-vimeo-1\";s:7:\"content\";s:5:\"\\e1a8\";}i:836;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Git\";s:9:\"classname\";s:12:\".auxicon-git\";s:7:\"content\";s:5:\"\\e1a9\";}i:837;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Googleplus\";s:9:\"classname\";s:19:\".auxicon-googleplus\";s:7:\"content\";s:5:\"\\e1aa\";}i:838;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Digg\";s:9:\"classname\";s:13:\".auxicon-digg\";s:7:\"content\";s:5:\"\\e1ab\";}i:839;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Google\";s:9:\"classname\";s:15:\".auxicon-google\";s:7:\"content\";s:5:\"\\e1ac\";}i:840;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Stumbleupon\";s:9:\"classname\";s:20:\".auxicon-stumbleupon\";s:7:\"content\";s:5:\"\\e1ad\";}i:841;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Apple\";s:9:\"classname\";s:14:\".auxicon-apple\";s:7:\"content\";s:5:\"\\e1ae\";}i:842;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Microsoft\";s:9:\"classname\";s:18:\".auxicon-microsoft\";s:7:\"content\";s:5:\"\\e1af\";}i:843;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Android\";s:9:\"classname\";s:16:\".auxicon-android\";s:7:\"content\";s:5:\"\\e1b0\";}i:844;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Dribbble\";s:9:\"classname\";s:17:\".auxicon-dribbble\";s:7:\"content\";s:5:\"\\e1b1\";}i:845;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Steam\";s:9:\"classname\";s:14:\".auxicon-steam\";s:7:\"content\";s:5:\"\\e1b2\";}i:846;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Pinterest\";s:9:\"classname\";s:18:\".auxicon-pinterest\";s:7:\"content\";s:5:\"\\e1b3\";}i:847;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Edge\";s:9:\"classname\";s:13:\".auxicon-edge\";s:7:\"content\";s:5:\"\\e1a2\";}i:848;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Chrome\";s:9:\"classname\";s:15:\".auxicon-chrome\";s:7:\"content\";s:5:\"\\e1b4\";}i:849;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Safari\";s:9:\"classname\";s:15:\".auxicon-safari\";s:7:\"content\";s:5:\"\\e1b5\";}i:850;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Firefox\";s:9:\"classname\";s:16:\".auxicon-firefox\";s:7:\"content\";s:5:\"\\e1b6\";}i:851;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Opera\";s:9:\"classname\";s:14:\".auxicon-opera\";s:7:\"content\";s:5:\"\\e1b7\";}i:852;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"Internet explorer\";s:9:\"classname\";s:26:\".auxicon-internet-explorer\";s:7:\"content\";s:5:\"\\e1b8\";}i:853;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Wikipedia\";s:9:\"classname\";s:18:\".auxicon-wikipedia\";s:7:\"content\";s:5:\"\\e1b9\";}i:854;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Amazon\";s:9:\"classname\";s:15:\".auxicon-amazon\";s:7:\"content\";s:5:\"\\e1ba\";}i:855;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Lastfm\";s:9:\"classname\";s:15:\".auxicon-lastfm\";s:7:\"content\";s:5:\"\\e1bb\";}i:856;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Delicious\";s:9:\"classname\";s:18:\".auxicon-delicious\";s:7:\"content\";s:5:\"\\e1bc\";}i:857;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Skype\";s:9:\"classname\";s:14:\".auxicon-skype\";s:7:\"content\";s:5:\"\\e1bd\";}i:858;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Rss\";s:9:\"classname\";s:12:\".auxicon-rss\";s:7:\"content\";s:5:\"\\e1be\";}i:859;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Twitter\";s:9:\"classname\";s:16:\".auxicon-twitter\";s:7:\"content\";s:5:\"\\e1bf\";}i:860;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Html5\";s:9:\"classname\";s:14:\".auxicon-html5\";s:7:\"content\";s:5:\"\\e1c0\";}i:861;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Css3\";s:9:\"classname\";s:13:\".auxicon-css3\";s:7:\"content\";s:5:\"\\e1c1\";}i:862;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Youtube\";s:9:\"classname\";s:16:\".auxicon-youtube\";s:7:\"content\";s:5:\"\\e1c2\";}i:863;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Dropbox\";s:9:\"classname\";s:16:\".auxicon-dropbox\";s:7:\"content\";s:5:\"\\e1c3\";}i:864;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Twich\";s:9:\"classname\";s:14:\".auxicon-twich\";s:7:\"content\";s:5:\"\\e1c6\";}i:865;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Pocket\";s:9:\"classname\";s:15:\".auxicon-pocket\";s:7:\"content\";s:5:\"\\e1c7\";}i:866;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Spotify\";s:9:\"classname\";s:16:\".auxicon-spotify\";s:7:\"content\";s:5:\"\\e1c4\";}i:867;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Yahoo\";s:9:\"classname\";s:14:\".auxicon-yahoo\";s:7:\"content\";s:5:\"\\e1c8\";}i:868;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Paypal\";s:9:\"classname\";s:15:\".auxicon-paypal\";s:7:\"content\";s:5:\"\\e1c9\";}i:869;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Visa\";s:9:\"classname\";s:13:\".auxicon-visa\";s:7:\"content\";s:5:\"\\e1ca\";}i:870;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Google wallet\";s:9:\"classname\";s:22:\".auxicon-google-wallet\";s:7:\"content\";s:5:\"\\e1cb\";}i:871;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Mastercard\";s:9:\"classname\";s:19:\".auxicon-mastercard\";s:7:\"content\";s:5:\"\\e1cc\";}i:872;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Soundcloud\";s:9:\"classname\";s:19:\".auxicon-soundcloud\";s:7:\"content\";s:5:\"\\e1cd\";}i:873;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Linux\";s:9:\"classname\";s:14:\".auxicon-linux\";s:7:\"content\";s:5:\"\\e1ce\";}i:874;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Github\";s:9:\"classname\";s:15:\".auxicon-github\";s:7:\"content\";s:5:\"\\e1cf\";}i:875;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Search 4\";s:9:\"classname\";s:17:\".auxicon-search-4\";s:7:\"content\";s:5:\"\\e1d0\";}i:876;O:8:\"stdClass\":3:{s:4:\"name\";s:25:\"Check mark circle outline\";s:9:\"classname\";s:34:\".auxicon-check-mark-circle-outline\";s:7:\"content\";s:5:\"\\e1d1\";}i:877;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Question circle\";s:9:\"classname\";s:24:\".auxicon-question-circle\";s:7:\"content\";s:5:\"\\e1d2\";}i:878;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Phone classic on\";s:9:\"classname\";s:25:\".auxicon-phone-classic-on\";s:7:\"content\";s:5:\"\\e1d3\";}i:879;O:8:\"stdClass\":3:{s:4:\"name\";s:20:\"Ios browsers outline\";s:9:\"classname\";s:29:\".auxicon-ios-browsers-outline\";s:7:\"content\";s:5:\"\\e1d4\";}i:880;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Social buffer\";s:9:\"classname\";s:22:\".auxicon-social-buffer\";s:7:\"content\";s:5:\"\\e1d5\";}i:881;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Social buffer outline\";s:9:\"classname\";s:30:\".auxicon-social-buffer-outline\";s:7:\"content\";s:5:\"\\e1d6\";}i:882;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Search 1\";s:9:\"classname\";s:17:\".auxicon-search-1\";s:7:\"content\";s:5:\"\\e0dd\";}i:883;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Comment\";s:9:\"classname\";s:16:\".auxicon-comment\";s:7:\"content\";s:5:\"\\e1d7\";}i:884;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Like\";s:9:\"classname\";s:13:\".auxicon-like\";s:7:\"content\";s:5:\"\\e1d8\";}i:885;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Share\";s:9:\"classname\";s:14:\".auxicon-share\";s:7:\"content\";s:5:\"\\e1d9\";}i:886;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Rate\";s:9:\"classname\";s:13:\".auxicon-rate\";s:7:\"content\";s:5:\"\\e1da\";}i:887;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Rate outline\";s:9:\"classname\";s:21:\".auxicon-rate-outline\";s:7:\"content\";s:5:\"\\e1dc\";}i:888;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Whatsapp\";s:9:\"classname\";s:17:\".auxicon-whatsapp\";s:7:\"content\";s:5:\"\\e1db\";}i:889;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Stumbleupon 1\";s:9:\"classname\";s:22:\".auxicon-stumbleupon-1\";s:7:\"content\";s:5:\"\\e1dd\";}i:890;O:8:\"stdClass\":3:{s:4:\"name\";s:2:\"Vk\";s:9:\"classname\";s:11:\".auxicon-vk\";s:7:\"content\";s:5:\"\\e1de\";}i:891;O:8:\"stdClass\":3:{s:4:\"name\";s:8:\"Telegram\";s:9:\"classname\";s:17:\".auxicon-telegram\";s:7:\"content\";s:5:\"\\e1df\";}i:892;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Telegram 2\";s:9:\"classname\";s:19:\".auxicon-telegram-2\";s:7:\"content\";s:5:\"\\e1e0\";}i:893;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Fontawesome webfont\";s:9:\"classname\";s:28:\".auxicon-fontawesome-webfont\";s:7:\"content\";s:5:\"\\e1c5\";}i:894;O:8:\"stdClass\":3:{s:4:\"name\";s:3:\"Bag\";s:9:\"classname\";s:12:\".auxicon-bag\";s:7:\"content\";s:5:\"\\e1e1\";}i:895;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Chevron right 1\";s:9:\"classname\";s:24:\".auxicon-chevron-right-1\";s:7:\"content\";s:5:\"\\e1e2\";}i:896;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Playback play\";s:9:\"classname\";s:22:\".auxicon-playback-play\";s:7:\"content\";s:5:\"\\e16e\";}i:897;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Lists\";s:9:\"classname\";s:14:\".auxicon-lists\";s:7:\"content\";s:5:\"\\e068\";}i:898;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Headset with microphone\";s:9:\"classname\";s:32:\".auxicon-headset-with-microphone\";s:7:\"content\";s:3:\"\\55\";}i:899;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Heart small\";s:9:\"classname\";s:20:\".auxicon-heart-small\";s:7:\"content\";s:5:\"\\e1e3\";}i:900;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Heart small outline\";s:9:\"classname\";s:28:\".auxicon-heart-small-outline\";s:7:\"content\";s:5:\"\\e1e4\";}i:901;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Settings 1\";s:9:\"classname\";s:19:\".auxicon-settings-1\";s:7:\"content\";s:3:\"\\3b\";}i:902;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Power\";s:9:\"classname\";s:14:\".auxicon-power\";s:7:\"content\";s:5:\"\\e1e5\";}i:903;O:8:\"stdClass\":3:{s:4:\"name\";s:11:\"Instagram 1\";s:9:\"classname\";s:20:\".auxicon-instagram-1\";s:7:\"content\";s:5:\"\\e0ca\";}i:904;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Computer imac 2\";s:9:\"classname\";s:24:\".auxicon-computer-imac-2\";s:7:\"content\";s:5:\"\\e1e6\";}i:905;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Grid lines streamline\";s:9:\"classname\";s:30:\".auxicon-grid-lines-streamline\";s:7:\"content\";s:5:\"\\e1e7\";}i:906;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Chevron left 1\";s:9:\"classname\";s:23:\".auxicon-chevron-left-1\";s:7:\"content\";s:5:\"\\e1e8\";}i:907;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Chevron down 1\";s:9:\"classname\";s:23:\".auxicon-chevron-down-1\";s:7:\"content\";s:5:\"\\e1e9\";}i:908;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Chevron up 1\";s:9:\"classname\";s:21:\".auxicon-chevron-up-1\";s:7:\"content\";s:5:\"\\e1ea\";}i:909;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Ios telephone outline\";s:9:\"classname\";s:30:\".auxicon-ios-telephone-outline\";s:7:\"content\";s:5:\"\\e1eb\";}i:910;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"Ios clock outline\";s:9:\"classname\";s:26:\".auxicon-ios-clock-outline\";s:7:\"content\";s:5:\"\\e1ec\";}i:911;O:8:\"stdClass\":3:{s:4:\"name\";s:18:\"Ios person outline\";s:9:\"classname\";s:27:\".auxicon-ios-person-outline\";s:7:\"content\";s:5:\"\\e1ed\";}i:912;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Arrow left 1\";s:9:\"classname\";s:21:\".auxicon-arrow-left-1\";s:7:\"content\";s:5:\"\\e1ee\";}i:913;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Arrow right 1\";s:9:\"classname\";s:22:\".auxicon-arrow-right-1\";s:7:\"content\";s:5:\"\\e1ef\";}i:914;O:8:\"stdClass\":3:{s:4:\"name\";s:19:\"Mail letter outline\";s:9:\"classname\";s:28:\".auxicon-mail-letter-outline\";s:7:\"content\";s:5:\"\\e1f0\";}i:915;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Search outline\";s:9:\"classname\";s:23:\".auxicon-search-outline\";s:7:\"content\";s:5:\"\\e1f1\";}i:916;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Android favorite\";s:9:\"classname\";s:25:\".auxicon-android-favorite\";s:7:\"content\";s:5:\"\\e1f3\";}i:917;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Android favorite outline\";s:9:\"classname\";s:33:\".auxicon-android-favorite-outline\";s:7:\"content\";s:5:\"\\e1f4\";}i:918;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Record\";s:9:\"classname\";s:15:\".auxicon-record\";s:7:\"content\";s:5:\"\\e1f5\";}i:919;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Explore\";s:9:\"classname\";s:16:\".auxicon-explore\";s:7:\"content\";s:5:\"\\e020\";}i:920;O:8:\"stdClass\":3:{s:4:\"name\";s:18:\"Map pin streamline\";s:9:\"classname\";s:27:\".auxicon-map-pin-streamline\";s:7:\"content\";s:5:\"\\e1f2\";}i:921;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Phone 2\";s:9:\"classname\";s:16:\".auxicon-phone-2\";s:7:\"content\";s:5:\"\\e1f6\";}i:922;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Ipad 1\";s:9:\"classname\";s:15:\".auxicon-ipad-1\";s:7:\"content\";s:5:\"\\e1f7\";}i:923;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"Plus\";s:9:\"classname\";s:13:\".auxicon-plus\";s:7:\"content\";s:5:\"\\e171\";}i:924;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Streamline sync\";s:9:\"classname\";s:24:\".auxicon-streamline-sync\";s:7:\"content\";s:5:\"\\e1f8\";}i:925;O:8:\"stdClass\":3:{s:4:\"name\";s:4:\"User\";s:9:\"classname\";s:13:\".auxicon-user\";s:7:\"content\";s:5:\"\\e00a\";}i:926;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Heart 3\";s:9:\"classname\";s:16:\".auxicon-heart-3\";s:7:\"content\";s:5:\"\\e1f9\";}i:927;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Arrows drag up\";s:9:\"classname\";s:23:\".auxicon-arrows-drag-up\";s:7:\"content\";s:5:\"\\e1fa\";}i:928;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Arrows drag up dashed\";s:9:\"classname\";s:30:\".auxicon-arrows-drag-up-dashed\";s:7:\"content\";s:5:\"\\e1fb\";}i:929;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"Arrows hamburger1\";s:9:\"classname\";s:26:\".auxicon-arrows-hamburger1\";s:7:\"content\";s:5:\"\\e1fc\";}i:930;O:8:\"stdClass\":3:{s:4:\"name\";s:18:\"Arrows hamburger 2\";s:9:\"classname\";s:27:\".auxicon-arrows-hamburger-2\";s:7:\"content\";s:5:\"\\e1fd\";}i:931;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Chevron down 2\";s:9:\"classname\";s:23:\".auxicon-chevron-down-2\";s:7:\"content\";s:5:\"\\e1fe\";}i:932;O:8:\"stdClass\":3:{s:4:\"name\";s:14:\"Chevron left 2\";s:9:\"classname\";s:23:\".auxicon-chevron-left-2\";s:7:\"content\";s:5:\"\\e1ff\";}i:933;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Chevron up 2\";s:9:\"classname\";s:21:\".auxicon-chevron-up-2\";s:7:\"content\";s:5:\"\\e200\";}i:934;O:8:\"stdClass\":3:{s:4:\"name\";s:5:\"Eye 1\";s:9:\"classname\";s:14:\".auxicon-eye-1\";s:7:\"content\";s:5:\"\\e202\";}i:935;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Close 1\";s:9:\"classname\";s:16:\".auxicon-close-1\";s:7:\"content\";s:5:\"\\e203\";}i:936;O:8:\"stdClass\":3:{s:4:\"name\";s:13:\"Ios telephone\";s:9:\"classname\";s:22:\".auxicon-ios-telephone\";s:7:\"content\";s:5:\"\\e204\";}i:937;O:8:\"stdClass\":3:{s:4:\"name\";s:12:\"Ios location\";s:9:\"classname\";s:21:\".auxicon-ios-location\";s:7:\"content\";s:5:\"\\e205\";}i:938;O:8:\"stdClass\":3:{s:4:\"name\";s:21:\"Email mail streamline\";s:9:\"classname\";s:30:\".auxicon-email-mail-streamline\";s:7:\"content\";s:5:\"\\e206\";}i:939;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Reload\";s:9:\"classname\";s:15:\".auxicon-reload\";s:7:\"content\";s:5:\"\\e207\";}i:940;O:8:\"stdClass\":3:{s:4:\"name\";s:6:\"Link 2\";s:9:\"classname\";s:15:\".auxicon-link-2\";s:7:\"content\";s:5:\"\\e208\";}i:941;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Chevron right 2\";s:9:\"classname\";s:24:\".auxicon-chevron-right-2\";s:7:\"content\";s:5:\"\\e201\";}i:942;O:8:\"stdClass\":3:{s:4:\"name\";s:10:\"Ios cloudy\";s:9:\"classname\";s:19:\".auxicon-ios-cloudy\";s:7:\"content\";s:5:\"\\e209\";}i:943;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Ios thunderstorm\";s:9:\"classname\";s:25:\".auxicon-ios-thunderstorm\";s:7:\"content\";s:5:\"\\e20a\";}i:944;O:8:\"stdClass\":3:{s:4:\"name\";s:16:\"Ios cloudy night\";s:9:\"classname\";s:25:\".auxicon-ios-cloudy-night\";s:7:\"content\";s:5:\"\\e20b\";}i:945;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Ios sunny\";s:9:\"classname\";s:18:\".auxicon-ios-sunny\";s:7:\"content\";s:5:\"\\e20c\";}i:946;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Ios snowy\";s:9:\"classname\";s:18:\".auxicon-ios-snowy\";s:7:\"content\";s:5:\"\\e20d\";}i:947;O:8:\"stdClass\":3:{s:4:\"name\";s:9:\"Ios rainy\";s:9:\"classname\";s:18:\".auxicon-ios-rainy\";s:7:\"content\";s:5:\"\\e20e\";}i:948;O:8:\"stdClass\":3:{s:4:\"name\";s:15:\"Ios partlysunny\";s:9:\"classname\";s:24:\".auxicon-ios-partlysunny\";s:7:\"content\";s:5:\"\\e20f\";}i:949;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Ios thunderstorm outline\";s:9:\"classname\";s:33:\".auxicon-ios-thunderstorm-outline\";s:7:\"content\";s:5:\"\\e210\";}i:950;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"Ios sunny outline\";s:9:\"classname\";s:26:\".auxicon-ios-sunny-outline\";s:7:\"content\";s:5:\"\\e211\";}i:951;O:8:\"stdClass\":3:{s:4:\"name\";s:18:\"Ios cloudy outline\";s:9:\"classname\";s:27:\".auxicon-ios-cloudy-outline\";s:7:\"content\";s:5:\"\\e212\";}i:952;O:8:\"stdClass\":3:{s:4:\"name\";s:24:\"Ios cloudy night outline\";s:9:\"classname\";s:33:\".auxicon-ios-cloudy-night-outline\";s:7:\"content\";s:5:\"\\e213\";}i:953;O:8:\"stdClass\":3:{s:4:\"name\";s:23:\"Ios partlysunny outline\";s:9:\"classname\";s:32:\".auxicon-ios-partlysunny-outline\";s:7:\"content\";s:5:\"\\e214\";}i:954;O:8:\"stdClass\":3:{s:4:\"name\";s:17:\"Ios rainy outline\";s:9:\"classname\";s:26:\".auxicon-ios-rainy-outline\";s:7:\"content\";s:5:\"\\e215\";}i:955;O:8:\"stdClass\":3:{s:4:\"name\";s:7:\"Heart 6\";s:9:\"classname\";s:16:\".auxicon-heart-6\";s:7:\"content\";s:5:\"\\e216\";}}','no'),(2622,'_transient_timeout_auxels_plugin_requirements_check','1652994547','no'),(2623,'_transient_auxels_plugin_requirements_check','1','no'),(2624,'_transient_timeout_auxpro_plugin_requirements_check','1652994547','no'),(2625,'_transient_auxpro_plugin_requirements_check','1','no'),(2626,'_transient_timeout_auxpfo_plugin_requirements_check','1652994547','no'),(2627,'_transient_auxpfo_plugin_requirements_check','1','no'),(2629,'_transient_timeout_global_styles_naish-pro','1652993709','no'),(2630,'_transient_global_styles_naish-pro','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(2631,'_transient_timeout_global_styles_svg_filters_naish-pro','1652993709','no'),(2632,'_transient_global_styles_svg_filters_naish-pro','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no'),(2634,'_site_transient_timeout_theme_roots','1652995451','no'),(2635,'_site_transient_theme_roots','a:4:{s:9:\"naish-pro\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(2636,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1652993652;s:8:\"response\";a:6:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{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:\"4.2.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.2.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{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:7:\"5.5.6.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";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:\"5.7\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";b:0;}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{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.5\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.5.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2622511\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:33:\"auxin-elements/auxin-elements.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/auxin-elements\";s:4:\"slug\";s:14:\"auxin-elements\";s:6:\"plugin\";s:33:\"auxin-elements/auxin-elements.php\";s:11:\"new_version\";s:5:\"2.9.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/auxin-elements/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/auxin-elements.2.9.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/auxin-elements/assets/icon-256x256.png?rev=1486570\";s:2:\"1x\";s:67:\"https://ps.w.org/auxin-elements/assets/icon-128x128.png?rev=1486570\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/auxin-elements/assets/banner-1544x500.png?rev=1486570\";s:2:\"1x\";s:69:\"https://ps.w.org/auxin-elements/assets/banner-772x250.png?rev=1486570\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.4\";s:14:\"upgrade_notice\";s:196:\"<ul>\n<li>[New]: Copy animation button added to Elementor context menu to copy and paste animations across elements.</li>\n<li>[Fix]: Deprecated notices of new version of Elementor fixed.</li>\n</ul>\";}s:35:\"auxin-portfolio/auxin-portfolio.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/auxin-portfolio\";s:4:\"slug\";s:15:\"auxin-portfolio\";s:6:\"plugin\";s:35:\"auxin-portfolio/auxin-portfolio.php\";s:11:\"new_version\";s:5:\"2.2.7\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/auxin-portfolio/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/auxin-portfolio.2.2.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/auxin-portfolio/assets/icon-256x256.png?rev=1604992\";s:2:\"1x\";s:68:\"https://ps.w.org/auxin-portfolio/assets/icon-128x128.png?rev=1604992\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/auxin-portfolio/assets/banner-1544x500.png?rev=1605031\";s:2:\"1x\";s:70:\"https://ps.w.org/auxin-portfolio/assets/banner-772x250.png?rev=1605031\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:21:\"wp-ulike/wp-ulike.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:22:\"w.org/plugins/wp-ulike\";s:4:\"slug\";s:8:\"wp-ulike\";s:6:\"plugin\";s:21:\"wp-ulike/wp-ulike.php\";s:11:\"new_version\";s:5:\"4.6.1\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/wp-ulike/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/wp-ulike.4.6.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:61:\"https://ps.w.org/wp-ulike/assets/icon-256x256.png?rev=2453069\";s:2:\"1x\";s:53:\"https://ps.w.org/wp-ulike/assets/icon.svg?rev=2453069\";s:3:\"svg\";s:53:\"https://ps.w.org/wp-ulike/assets/icon.svg?rev=2453069\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-ulike/assets/banner-1544x500.png?rev=2428282\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-ulike/assets/banner-772x250.png?rev=2428282\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{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.2.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:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/mailchimp-for-wp\";s:4:\"slug\";s:16:\"mailchimp-for-wp\";s:6:\"plugin\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:11:\"new_version\";s:5:\"4.8.7\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/mailchimp-for-wp/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577\";s:2:\"1x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1184706\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}}s:7:\"checked\";a:9:{s:19:\"akismet/akismet.php\";s:5:\"4.2.2\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.5.6\";s:23:\"elementor/elementor.php\";s:5:\"3.5.6\";s:9:\"hello.php\";s:5:\"1.7.2\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:5:\"4.8.7\";s:33:\"auxin-elements/auxin-elements.php\";s:5:\"2.9.4\";s:35:\"auxin-portfolio/auxin-portfolio.php\";s:5:\"2.2.6\";s:35:\"auxin-pro-tools/auxin-pro-tools.php\";s:5:\"1.7.4\";s:21:\"wp-ulike/wp-ulike.php\";s:5:\"4.5.9\";}}','no'),(2637,'_transient_timeout_mc4wp_mailchimp_lists','1653080053','no'),(2638,'_transient_mc4wp_mailchimp_lists','a:0:{}','no');
/*!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) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=4151 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_elementor_edit_mode','builder'),(4,5,'_elementor_template_type','kit'),(7,7,'_elementor_template_type','header'),(8,7,'_elementor_edit_mode','builder'),(9,7,'_elementor_data','[{\"id\":\"54a26d6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":15,\"right\":0,\"bottom\":15,\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"99ffd65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position_mobile\":\"center\",\"align\":\"space-between\",\"align_tablet\":\"center\",\"align_mobile\":\"space-between\"},\"elements\":[{\"id\":\"c49eb21\",\"elType\":\"widget\",\"settings\":{\"align\":\"left\",\"align_tablet\":\"center\",\"align_mobile\":\"left\",\"_element_width\":\"auto\",\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"aux_logo\"},{\"id\":\"d052931\",\"elType\":\"widget\",\"settings\":{\"menu_slug\":\"header-menu\",\"splitter\":\"\",\"burger_menu_location\":\"overlay\",\"align\":\"right\",\"align_mobile\":\"left\",\"item_color\":\"#000000\",\"menu_item_typo_typography\":\"custom\",\"menu_item_typo_font_family\":\"Poppins\",\"menu_item_typo_font_weight\":600,\"menu_item_typo_text_transform\":\"uppercase\",\"menu_item_typo_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"item_hover_color\":\"#AAAAAA\",\"item_padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":40,\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":55,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"aux_menu_box\"}],\"isInner\":false}],\"isInner\":false}]'),(10,7,'_elementor_version','3.5.6'),(11,7,'_wp_page_template','default'),(13,8,'auxin-autop','no'),(14,8,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),(15,8,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@demoweblinks.in>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(16,8,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@demoweblinks.in>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(17,8,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s: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.\";}'),(18,8,'_additional_settings',''),(19,8,'_locale','en_US'),(23,10,'_wp_attached_file','2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1.png'),(24,10,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:128:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1283;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25,10,'auxin_import_id','1366'),(26,11,'_wp_attached_file','2020/10/708_2-35060-1.png'),(27,11,'_wp_attachment_metadata','a:5:{s:4:\"file\";s:104:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1283;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"708_2-35060-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"708_2-35060-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}}'),(28,11,'auxin_import_id','1365'),(29,12,'_wp_attached_file','2020/10/connor-wang-MNz7IGrcEl0-unsplash-1.png'),(30,12,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:125:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1283;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(31,12,'auxin_import_id','1364'),(32,13,'_wp_attached_file','2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png'),(33,13,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:131:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1283;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(34,13,'auxin_import_id','1363'),(35,14,'_wp_attached_file','2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png'),(36,14,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:125:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1283;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(37,14,'auxin_import_id','1362'),(38,15,'_wp_attached_file','2020/10/jason-leung-poI7DelFiVA-unsplash-1.png'),(39,15,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:125:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1283;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(40,15,'auxin_import_id','1361'),(41,16,'_wp_attached_file','2020/10/thai-an-BE6CIwysCvU-unsplash-1.png'),(42,16,'_wp_attachment_metadata','a:5:{s:4:\"file\";s:121:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1283;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:5:\"sizes\";a:1:{s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"thai-an-BE6CIwysCvU-unsplash-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}}'),(43,16,'auxin_import_id','1360'),(44,17,'_wp_attached_file','2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png'),(45,17,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:133:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1283;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(46,17,'auxin_import_id','1359'),(47,18,'_wp_attached_file','2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1.png'),(48,18,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:127:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1.png\";s:5:\"width\";i:1100;s:6:\"height\";i:1283;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(49,18,'auxin_import_id','1358'),(50,19,'_wp_attached_file','2020/11/Group_88.png'),(51,19,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:99:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\";s:5:\"width\";i:93;s:6:\"height\";i:95;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(52,19,'auxin_import_id','1199'),(53,20,'_wp_attached_file','2020/10/Untitled.png'),(54,20,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:99:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Untitled.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55,20,'auxin_import_id','1134'),(56,21,'_wp_attached_file','2020/10/shunya-koide-lnGrGTmftcY-unsplash.png'),(57,21,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:124:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\";s:5:\"width\";i:671;s:6:\"height\";i:714;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(58,21,'auxin_import_id','806'),(59,22,'_wp_attached_file','2020/10/architecture-building-city-of-arts-and-sciences-256150.png'),(60,22,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:145:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/architecture-building-city-of-arts-and-sciences-256150.png\";s:5:\"width\";i:1920;s:6:\"height\";i:732;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(61,22,'auxin_import_id','784'),(62,23,'_wp_attached_file','2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg'),(63,23,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:147:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\";s:5:\"width\";i:429;s:6:\"height\";i:464;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(64,23,'auxin_import_id','779'),(65,24,'_wp_attached_file','2020/10/Full-body-portrait-of-professional-business-woman.jpg'),(66,24,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:140:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\";s:5:\"width\";i:429;s:6:\"height\";i:464;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(67,24,'auxin_import_id','777'),(68,25,'_wp_attached_file','2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg'),(69,25,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:141:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\";s:5:\"width\";i:429;s:6:\"height\";i:464;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(70,25,'auxin_import_id','776'),(71,26,'_wp_attached_file','2020/10/Mask-Group-844449@2x.jpg'),(72,26,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:111:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\";s:5:\"width\";i:429;s:6:\"height\";i:464;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(73,26,'auxin_import_id','773'),(74,27,'_wp_attached_file','2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png'),(75,27,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:146:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\";s:5:\"width\";i:429;s:6:\"height\";i:464;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(76,27,'auxin_import_id','772'),(77,28,'_wp_attached_file','2020/10/Mask-Group-84448@2x@2x.jpg'),(78,28,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:113:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\";s:5:\"width\";i:429;s:6:\"height\";i:464;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(79,28,'auxin_import_id','737'),(80,29,'_wp_attached_file','2020/10/jason-leung-poI7DelFiVA-unsplash.png'),(81,29,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:123:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\";s:5:\"width\";i:814;s:6:\"height\";i:699;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(82,29,'auxin_import_id','712'),(83,30,'_wp_attached_file','2020/10/bckfwd-oB1EJLokN3E-unsplash.png'),(84,30,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:118:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\";s:5:\"width\";i:476;s:6:\"height\";i:390;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(85,30,'auxin_import_id','670'),(86,31,'_wp_attached_file','2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png'),(87,31,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:131:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\";s:5:\"width\";i:706;s:6:\"height\";i:602;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(88,31,'auxin_import_id','651'),(89,32,'_wp_attached_file','2020/10/thai-an-BE6CIwysCvU-unsplash.png'),(90,32,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:119:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash.png\";s:5:\"width\";i:1920;s:6:\"height\";i:600;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(91,32,'auxin_import_id','638'),(92,33,'_wp_attached_file','2020/10/client-7@2x.png'),(93,33,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:102:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\";s:5:\"width\";i:137;s:6:\"height\";i:36;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(94,33,'auxin_import_id','559'),(95,34,'_wp_attached_file','2020/10/client-9@2x.png'),(96,34,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:102:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\";s:5:\"width\";i:117;s:6:\"height\";i:71;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(97,34,'auxin_import_id','555'),(98,35,'_wp_attached_file','2020/10/client-4@2x.png'),(99,35,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:102:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\";s:5:\"width\";i:103;s:6:\"height\";i:73;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(100,35,'auxin_import_id','553'),(101,36,'_wp_attached_file','2020/10/client-5@2x.png'),(102,36,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:102:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\";s:5:\"width\";i:135;s:6:\"height\";i:54;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(103,36,'auxin_import_id','554'),(104,37,'_wp_attached_file','2020/10/client-3@2x.png'),(105,37,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:102:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\";s:5:\"width\";i:143;s:6:\"height\";i:42;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(106,37,'auxin_import_id','552'),(107,38,'_wp_attached_file','2020/10/client-1@2x.png'),(108,38,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:102:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\";s:5:\"width\";i:109;s:6:\"height\";i:43;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(109,38,'auxin_import_id','551'),(110,39,'_wp_attached_file','2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png'),(111,39,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:137:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\";s:5:\"width\";i:495;s:6:\"height\";i:813;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(112,39,'auxin_import_id','486'),(113,40,'_wp_attached_file','2020/10/sean-pollock-PhYq704ffdA-unsplash.png'),(114,40,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:124:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\";s:5:\"width\";i:708;s:6:\"height\";i:710;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(115,40,'auxin_import_id','461'),(116,41,'_wp_attached_file','2020/10/Mask-Group-89@2x.png'),(117,41,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:107:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\";s:5:\"width\";i:72;s:6:\"height\";i:72;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(118,41,'auxin_import_id','419'),(119,42,'_wp_attached_file','2020/10/Mask-Group-84@2x.png'),(120,42,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:107:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\";s:5:\"width\";i:72;s:6:\"height\";i:72;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(121,42,'auxin_import_id','417'),(122,43,'_wp_attached_file','2020/10/Mask-Group-85.png'),(123,43,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:104:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\";s:5:\"width\";i:72;s:6:\"height\";i:72;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(124,43,'auxin_import_id','418'),(125,44,'_wp_attached_file','2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.png'),(126,44,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:121:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.png\";s:5:\"width\";i:754;s:6:\"height\";i:985;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(127,44,'auxin_import_id','289'),(128,45,'_wp_attached_file','2020/10/connor-wang-MNz7IGrcEl0-unsplash.png'),(129,45,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:123:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\";s:5:\"width\";i:835;s:6:\"height\";i:729;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(130,45,'auxin_import_id','249'),(131,46,'_wp_attached_file','2020/10/homeentrance02_03-12361.png'),(132,46,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:114:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\";s:5:\"width\";i:791;s:6:\"height\";i:393;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(133,46,'auxin_import_id','175'),(134,47,'_wp_attached_file','2020/10/tim-durgan-2P3eh98tY2s-unsplash.png'),(135,47,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:122:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\";s:5:\"width\";i:646;s:6:\"height\";i:882;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(136,47,'auxin_import_id','174'),(137,48,'_wp_attached_file','2020/10/volkan-vardar-y7RW7g2izy0-unsplash.png'),(138,48,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:125:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash.png\";s:5:\"width\";i:469;s:6:\"height\";i:1080;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(139,48,'auxin_import_id','52'),(140,49,'_wp_attached_file','2020/10/Group-110.png'),(141,49,'_wp_attachment_metadata','a:4:{s:4:\"file\";s:100:\"/home2/assarbbq/public_html/demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Group-110.png\";s:5:\"width\";i:177;s:6:\"height\";i:57;s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(142,49,'auxin_import_id','20'),(148,51,'auxin-autop','no'),(149,51,'_elementor_template_type','section'),(150,51,'_elementor_edit_mode','builder'),(151,51,'_elementor_version','3.0.15'),(152,51,'_wp_page_template','default'),(153,51,'_elementor_data','[{\"id\":\"c5eac7f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"8879093\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"910ee03\",\"elType\":\"widget\",\"settings\":{\"template\":\"quote\",\"customer_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-85.png\",\"id\":\"43\"},\"customer_img_size\":\"full\",\"title\":\"alex Janson\",\"subtitle\":\"Designer\",\"content\":\"A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"subtitle_color\":\"#7A7A7A\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Mukta\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"subtitle_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"content_color\":\"#7A7A7A\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"box_padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"box_backgound_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .entry-content::after,selector .entry-content::before{\\n    display: none;\\n}\\nselector .aux-testimonial-infobox{\\n    margin: 0 auto;\\n}\\nselector .aux-testimonial-image{\\n    width: 80px;\\n}\\nselector .aux-testimonial-info{\\n    text-align: left;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_color\":\"globals\\/colors?id=text\",\"subtitle_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"box_backgound_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_testimonial\"},{\"id\":\"0145697\",\"elType\":\"widget\",\"settings\":{\"type\":\"inline\",\"inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"68.81\\\" height=\\\"52.159\\\" viewBox=\\\"0 0 68.81 52.159\\\">\\r\\n  <path id=\\\"Path_15\\\" data-name=\\\"Path 15\\\" d=\\\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\\\" transform=\\\"translate(-10.5 145.441)\\\" fill=\\\"var(--e-global-color-secondary)\\\"\\/>\\r\\n<\\/svg>\\r\\n\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_simple_svg\"}],\"isInner\":false}],\"isInner\":false}]'),(154,51,'_elementor_controls_usage','a:4:{s:15:\"aux_testimonial\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:16:\"template_section\";a:3:{s:8:\"template\";i:1;s:12:\"customer_img\";i:1;s:17:\"customer_img_size\";i:1;}s:15:\"content_section\";a:3:{s:5:\"title\";i:1;s:8:\"subtitle\";i:1;s:7:\"content\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:12:\"title_margin\";i:1;}s:22:\"subtitle_style_section\";a:6:{s:14:\"subtitle_color\";i:1;s:30:\"subtitle_typography_typography\";i:1;s:31:\"subtitle_typography_font_family\";i:1;s:29:\"subtitle_typography_font_size\";i:1;s:36:\"subtitle_typography_font_size_tablet\";i:1;s:31:\"subtitle_typography_font_weight\";i:1;}s:20:\"review_style_section\";a:7:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;}s:17:\"box_style_section\";a:4:{s:11:\"box_padding\";i:1;s:24:\"box_backgound_background\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:1:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:14:\"aux_simple_svg\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"svg_image_section\";a:2:{s:4:\"type\";i:1;s:6:\"inline\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:2:{s:9:\"_position\";i:1;s:9:\"_offset_y\";i:1;}}s:5:\"style\";a:1:{s:17:\"svg_style_section\";a:1:{s:6:\"_width\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(156,51,'auxin_import_post','1641'),(157,52,'auxin-autop','no'),(158,52,'_elementor_template_type','section'),(159,52,'_elementor_edit_mode','builder'),(160,52,'_elementor_version','3.0.15'),(161,52,'_wp_page_template','default'),(162,52,'_elementor_data','[{\"id\":\"5088fea\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e38797c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"2bee713\",\"elType\":\"widget\",\"settings\":{\"type\":\"inline\",\"inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"68.81\\\" height=\\\"52.159\\\" viewBox=\\\"0 0 68.81 52.159\\\">\\r\\n  <path id=\\\"Path_15\\\" data-name=\\\"Path 15\\\" d=\\\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\\\" transform=\\\"translate(-10.5 145.441)\\\" fill=\\\"var(--e-global-color-secondary)\\\"\\/>\\r\\n<\\/svg>\\r\\n\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_simple_svg\"},{\"id\":\"9598733\",\"elType\":\"widget\",\"settings\":{\"template\":\"quote\",\"customer_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84@2x.png\",\"id\":\"42\"},\"customer_img_size\":\"full\",\"title\":\"alex Janson\",\"subtitle\":\"Designer\",\"content\":\"A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"subtitle_color\":\"#7A7A7A\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Mukta\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"subtitle_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"content_color\":\"#7A7A7A\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"box_padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"box_backgound_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .entry-content::after,selector .entry-content::before{\\n    display: none;\\n}\\nselector .aux-testimonial-infobox{\\n    margin: 0 auto;\\n}\\nselector .aux-testimonial-image{\\n    width: 80px;\\n}\\nselector .aux-testimonial-info{\\n    text-align: left;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_color\":\"globals\\/colors?id=text\",\"subtitle_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"box_backgound_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_testimonial\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(163,52,'_elementor_controls_usage','a:4:{s:14:\"aux_simple_svg\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"svg_image_section\";a:2:{s:4:\"type\";i:1;s:6:\"inline\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:2:{s:9:\"_position\";i:1;s:9:\"_offset_y\";i:1;}}s:5:\"style\";a:1:{s:17:\"svg_style_section\";a:1:{s:6:\"_width\";i:1;}}}}s:15:\"aux_testimonial\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:16:\"template_section\";a:3:{s:8:\"template\";i:1;s:12:\"customer_img\";i:1;s:17:\"customer_img_size\";i:1;}s:15:\"content_section\";a:3:{s:5:\"title\";i:1;s:8:\"subtitle\";i:1;s:7:\"content\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:12:\"title_margin\";i:1;}s:22:\"subtitle_style_section\";a:6:{s:14:\"subtitle_color\";i:1;s:30:\"subtitle_typography_typography\";i:1;s:31:\"subtitle_typography_font_family\";i:1;s:29:\"subtitle_typography_font_size\";i:1;s:36:\"subtitle_typography_font_size_tablet\";i:1;s:31:\"subtitle_typography_font_weight\";i:1;}s:20:\"review_style_section\";a:7:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;}s:17:\"box_style_section\";a:4:{s:11:\"box_padding\";i:1;s:24:\"box_backgound_background\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:1:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(165,52,'auxin_import_post','1637'),(166,53,'auxin-autop','no'),(167,53,'_elementor_template_type','section'),(168,53,'_elementor_edit_mode','builder'),(169,53,'_elementor_version','3.0.15'),(170,53,'_wp_page_template','default'),(171,53,'_elementor_data','[{\"id\":\"4c837aa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"37389cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"e4af37c\",\"elType\":\"widget\",\"settings\":{\"type\":\"inline\",\"inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"68.81\\\" height=\\\"52.159\\\" viewBox=\\\"0 0 68.81 52.159\\\">\\r\\n  <path id=\\\"Path_15\\\" data-name=\\\"Path 15\\\" d=\\\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\\\" transform=\\\"translate(-10.5 145.441)\\\" fill=\\\"var(--e-global-color-secondary)\\\"\\/>\\r\\n<\\/svg>\\r\\n\",\"_position\":\"absolute\",\"_offset_y\":{\"unit\":\"px\",\"size\":-21,\"sizes\":[]},\"_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_simple_svg\"},{\"id\":\"fd59d90\",\"elType\":\"widget\",\"settings\":{\"template\":\"quote\",\"customer_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-89@2x.png\",\"id\":\"41\"},\"customer_img_size\":\"full\",\"title\":\"alex Janson\",\"subtitle\":\"Designer\",\"content\":\"A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"subtitle_color\":\"#7A7A7A\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_family\":\"Mukta\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"subtitle_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"300\",\"content_color\":\"#7A7A7A\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"box_padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"box_backgound_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .entry-content::after{\\n    display: none;\\n}\\nselector .entry-content::before{\\n    display: none;\\n}\\nselector .aux-testimonial-infobox{\\n    margin: 0 auto;\\n}\\nselector .aux-testimonial-image{\\n    width: 80px;\\n}\\nselector .aux-testimonial-info{\\n    text-align: left;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"subtitle_color\":\"globals\\/colors?id=text\",\"subtitle_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"box_backgound_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_testimonial\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(172,53,'_elementor_controls_usage','a:4:{s:14:\"aux_simple_svg\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:17:\"svg_image_section\";a:2:{s:4:\"type\";i:1;s:6:\"inline\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:2:{s:9:\"_position\";i:1;s:9:\"_offset_y\";i:1;}}s:5:\"style\";a:1:{s:17:\"svg_style_section\";a:1:{s:6:\"_width\";i:1;}}}}s:15:\"aux_testimonial\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:16:\"template_section\";a:3:{s:8:\"template\";i:1;s:12:\"customer_img\";i:1;s:17:\"customer_img_size\";i:1;}s:15:\"content_section\";a:3:{s:5:\"title\";i:1;s:8:\"subtitle\";i:1;s:7:\"content\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:12:\"title_margin\";i:1;}s:22:\"subtitle_style_section\";a:6:{s:14:\"subtitle_color\";i:1;s:30:\"subtitle_typography_typography\";i:1;s:31:\"subtitle_typography_font_family\";i:1;s:29:\"subtitle_typography_font_size\";i:1;s:36:\"subtitle_typography_font_size_tablet\";i:1;s:31:\"subtitle_typography_font_weight\";i:1;}s:20:\"review_style_section\";a:7:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;}s:17:\"box_style_section\";a:4:{s:11:\"box_padding\";i:1;s:24:\"box_backgound_background\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:1:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(174,53,'auxin_import_post','1632'),(175,54,'auxin-autop','no'),(176,56,'auxin-autop','no'),(177,56,'_thumbnail_id','13'),(178,56,'page_elementor_header_template','134'),(179,56,'page_header_use_legacy','default'),(180,56,'page_overlay_header','default'),(181,56,'page_header_top_sticky','default'),(182,56,'page_elementor_footer_template','69'),(183,56,'page_footer_use_legacy','default'),(184,56,'page_footer_attribution','default'),(185,56,'page_footer_is_sticky','default'),(186,56,'content_layout','default'),(187,56,'show_content_top_margin','default'),(188,56,'page_show_goto_top_btn','default'),(189,56,'page_goto_top_alignment','default'),(190,56,'aux_title_bar_show','default'),(191,56,'subtitle_position','before'),(192,56,'aux_title_bar_preset','default'),(193,56,'aux_title_bar_enable_customize','0'),(194,56,'aux_title_bar_content_width_type','boxed'),(195,56,'aux_title_bar_content_section_height','auto'),(196,56,'aux_title_bar_title_show','1'),(197,56,'aux_title_bar_heading_bordered','0'),(198,56,'aux_title_bar_heading_boxed','0'),(199,56,'aux_title_bar_meta_enabled','0'),(200,56,'aux_title_bar_bread_enabled','1'),(201,56,'aux_title_bar_bread_bordered','0'),(202,56,'aux_title_bar_text_align','left'),(203,56,'aux_title_bar_overlay_pattern','none'),(204,56,'aux_title_bar_overlay_pattern_opacity','0.15'),(205,56,'aux_title_bar_color_style','dark'),(206,56,'aux_title_bar_bg_show','0'),(207,56,'aux_title_bar_bg_parallax','0'),(208,56,'aux_title_bar_bg_size','cover'),(209,56,'aux_custom_bg_show','0'),(210,56,'aux_custom_bg_repeat','repeat'),(211,56,'aux_custom_bg_attach','scroll'),(212,56,'aux_custom_bg_position','left top'),(213,56,'aux_custom_bg_size','auto'),(214,56,'top_slider_id','none'),(215,56,'_no_feature_image_in_single','0'),(216,56,'_overview_info_alignment','default'),(217,56,'_side_info_pos','left'),(218,56,'_sticky_sidebar','default'),(219,56,'_side_info_font_color','dark'),(220,56,'_show_next_prev_nav','default'),(221,56,'_next_prev_nav_skin','default'),(222,56,'_show_side_info_meta','default'),(223,56,'_side_info_dicplay_cat','default'),(224,56,'_side_info_dicplay_tag','default'),(225,56,'_display_related','default'),(226,56,'_related_posts_preview_mode','default'),(227,56,'_related_posts_column_number','default'),(228,56,'_related_posts_align_center','default'),(229,56,'_related_posts_full_width','default'),(230,56,'_related_posts_snap_items','default'),(231,56,'_related_posts_display_taxonomies','default'),(232,56,'_related_posts_all_items_btn_display','default'),(233,56,'_related_posts_all_items_url_type','default'),(234,56,'aux_metafields_custom_styles',''),(235,56,'_overview','Architecture is an art that works hand-in-hand with science to design places where people can live, eat, work and play. As a leader of various projects, from something as small as an addition to someone\'s home, to something as large as a hospital, college campus, or an entire neighbourhood, the role of an architect is to bring together the creative ideas and visions of the client and keep in mind the needs of those.'),(236,56,'_overview_title','Design role'),(237,56,'auxin_import_post','962'),(238,57,'auxin-autop','no'),(239,57,'_thumbnail_id','14'),(240,57,'page_elementor_header_template','25'),(241,57,'page_header_use_legacy','default'),(242,57,'page_overlay_header','default'),(243,57,'page_header_top_sticky','default'),(244,57,'page_elementor_footer_template','112'),(245,57,'page_footer_use_legacy','default'),(246,57,'page_footer_attribution','default'),(247,57,'page_footer_is_sticky','default'),(248,57,'content_layout','default'),(249,57,'show_content_top_margin','default'),(250,57,'page_show_goto_top_btn','default'),(251,57,'page_goto_top_alignment','default'),(252,57,'aux_title_bar_show','default'),(253,57,'subtitle_position','before'),(254,57,'aux_title_bar_preset','default'),(255,57,'aux_title_bar_enable_customize','0'),(256,57,'aux_title_bar_content_width_type','boxed'),(257,57,'aux_title_bar_content_section_height','auto'),(258,57,'aux_title_bar_title_show','1'),(259,57,'aux_title_bar_heading_bordered','0'),(260,57,'aux_title_bar_heading_boxed','0'),(261,57,'aux_title_bar_meta_enabled','0'),(262,57,'aux_title_bar_bread_enabled','1'),(263,57,'aux_title_bar_bread_bordered','0'),(264,57,'aux_title_bar_text_align','left'),(265,57,'aux_title_bar_overlay_pattern','none'),(266,57,'aux_title_bar_overlay_pattern_opacity','0.15'),(267,57,'aux_title_bar_color_style','dark'),(268,57,'aux_title_bar_bg_show','0'),(269,57,'aux_title_bar_bg_parallax','0'),(270,57,'aux_title_bar_bg_size','cover'),(271,57,'aux_custom_bg_show','0'),(272,57,'aux_custom_bg_repeat','repeat'),(273,57,'aux_custom_bg_attach','scroll'),(274,57,'aux_custom_bg_position','left top'),(275,57,'aux_custom_bg_size','auto'),(276,57,'top_slider_id','none'),(277,57,'_no_feature_image_in_single','0'),(278,57,'_overview_info_alignment','default'),(279,57,'_side_info_pos','default'),(280,57,'_sticky_sidebar','default'),(281,57,'_side_info_font_color','dark'),(282,57,'_show_next_prev_nav','default'),(283,57,'_next_prev_nav_skin','default'),(284,57,'_show_side_info_meta','default'),(285,57,'_side_info_dicplay_cat','default'),(286,57,'_side_info_dicplay_tag','default'),(287,57,'_display_related','default'),(288,57,'_related_posts_preview_mode','default'),(289,57,'_related_posts_column_number','default'),(290,57,'_related_posts_align_center','default'),(291,57,'_related_posts_full_width','default'),(292,57,'_related_posts_snap_items','default'),(293,57,'_related_posts_display_taxonomies','default'),(294,57,'_related_posts_all_items_btn_display','default'),(295,57,'_related_posts_all_items_url_type','default'),(296,57,'aux_metafields_custom_styles',''),(297,57,'_overview','<p>Architecture is an art that works hand-in-hand with science to design places where people can live, eat, work and play. As a leader of various projects, from something as small as an addition to someone\'s home, to something as large as a hospital, college campus, or an entire neighbourhood, the role of an architect is to bring together the creative ideas and visions of the client and keep in mind the needs of those that will be using the new space.</p>'),(298,57,'_overview_title','Means of design'),(299,57,'auxin_import_post','957'),(300,58,'auxin-autop','no'),(301,58,'_thumbnail_id','15'),(302,58,'page_elementor_header_template','25'),(303,58,'page_header_use_legacy','default'),(304,58,'page_overlay_header','default'),(305,58,'page_header_top_sticky','default'),(306,58,'page_elementor_footer_template','112'),(307,58,'page_footer_use_legacy','default'),(308,58,'page_footer_attribution','default'),(309,58,'page_footer_is_sticky','default'),(310,58,'content_layout','default'),(311,58,'show_content_top_margin','default'),(312,58,'page_show_goto_top_btn','default'),(313,58,'page_goto_top_alignment','default'),(314,58,'aux_title_bar_show','default'),(315,58,'subtitle_position','before'),(316,58,'aux_title_bar_preset','default'),(317,58,'aux_title_bar_enable_customize','0'),(318,58,'aux_title_bar_content_width_type','boxed'),(319,58,'aux_title_bar_content_section_height','auto'),(320,58,'aux_title_bar_title_show','1'),(321,58,'aux_title_bar_heading_bordered','0'),(322,58,'aux_title_bar_heading_boxed','0'),(323,58,'aux_title_bar_meta_enabled','0'),(324,58,'aux_title_bar_bread_enabled','1'),(325,58,'aux_title_bar_bread_bordered','0'),(326,58,'aux_title_bar_text_align','left'),(327,58,'aux_title_bar_overlay_pattern','none'),(328,58,'aux_title_bar_overlay_pattern_opacity','0.15'),(329,58,'aux_title_bar_color_style','dark'),(330,58,'aux_title_bar_bg_show','0'),(331,58,'aux_title_bar_bg_parallax','0'),(332,58,'aux_title_bar_bg_size','cover'),(333,58,'aux_custom_bg_show','0'),(334,58,'aux_custom_bg_repeat','repeat'),(335,58,'aux_custom_bg_attach','scroll'),(336,58,'aux_custom_bg_position','left top'),(337,58,'aux_custom_bg_size','auto'),(338,58,'top_slider_id','none'),(339,58,'_no_feature_image_in_single','0'),(340,58,'_overview_info_alignment','default'),(341,58,'_side_info_pos','default'),(342,58,'_sticky_sidebar','default'),(343,58,'_side_info_font_color','dark'),(344,58,'_show_next_prev_nav','default'),(345,58,'_next_prev_nav_skin','default'),(346,58,'_show_side_info_meta','default'),(347,58,'_side_info_dicplay_cat','default'),(348,58,'_side_info_dicplay_tag','default'),(349,58,'_display_related','default'),(350,58,'_related_posts_preview_mode','default'),(351,58,'_related_posts_column_number','default'),(352,58,'_related_posts_align_center','default'),(353,58,'_related_posts_full_width','default'),(354,58,'_related_posts_snap_items','default'),(355,58,'_related_posts_display_taxonomies','default'),(356,58,'_related_posts_all_items_btn_display','default'),(357,58,'_related_posts_all_items_url_type','default'),(358,58,'aux_metafields_custom_styles',''),(359,58,'_overview','<p>Architecture is an art that works hand-in-hand with science to design places where people can live, eat, work and play. As a leader of various projects, from something as small as an addition to someone\'s home, to something as large as a hospital, college campus, or an entire neighbourhood, the role of an architect is to bring together the creative ideas and visions of the client and keep in mind the needs of those that will be using the new space.</p>'),(360,58,'_overview_title','Environmental role'),(361,58,'auxin_import_post','955'),(362,59,'auxin-autop','no'),(363,59,'_thumbnail_id','17'),(364,59,'page_elementor_header_template','25'),(365,59,'page_header_use_legacy','default'),(366,59,'page_overlay_header','default'),(367,59,'page_header_top_sticky','default'),(368,59,'page_elementor_footer_template','112'),(369,59,'page_footer_use_legacy','default'),(370,59,'page_footer_attribution','default'),(371,59,'page_footer_is_sticky','default'),(372,59,'content_layout','default'),(373,59,'show_content_top_margin','default'),(374,59,'page_show_goto_top_btn','default'),(375,59,'page_goto_top_alignment','default'),(376,59,'aux_title_bar_show','default'),(377,59,'subtitle_position','before'),(378,59,'aux_title_bar_preset','default'),(379,59,'aux_title_bar_enable_customize','0'),(380,59,'aux_title_bar_content_width_type','boxed'),(381,59,'aux_title_bar_content_section_height','auto'),(382,59,'aux_title_bar_title_show','1'),(383,59,'aux_title_bar_heading_bordered','0'),(384,59,'aux_title_bar_heading_boxed','0'),(385,59,'aux_title_bar_meta_enabled','0'),(386,59,'aux_title_bar_bread_enabled','1'),(387,59,'aux_title_bar_bread_bordered','0'),(388,59,'aux_title_bar_text_align','left'),(389,59,'aux_title_bar_overlay_pattern','none'),(390,59,'aux_title_bar_overlay_pattern_opacity','0.15'),(391,59,'aux_title_bar_color_style','dark'),(392,59,'aux_title_bar_bg_show','0'),(393,59,'aux_title_bar_bg_parallax','0'),(394,59,'aux_title_bar_bg_size','cover'),(395,59,'aux_custom_bg_show','0'),(396,59,'aux_custom_bg_repeat','repeat'),(397,59,'aux_custom_bg_attach','scroll'),(398,59,'aux_custom_bg_position','left top'),(399,59,'aux_custom_bg_size','auto'),(400,59,'top_slider_id','none'),(401,59,'_no_feature_image_in_single','0'),(402,59,'_overview_info_alignment','default'),(403,59,'_side_info_pos','default'),(404,59,'_sticky_sidebar','default'),(405,59,'_side_info_font_color','dark'),(406,59,'_show_next_prev_nav','default'),(407,59,'_next_prev_nav_skin','default'),(408,59,'_show_side_info_meta','default'),(409,59,'_side_info_dicplay_cat','default'),(410,59,'_side_info_dicplay_tag','default'),(411,59,'_display_related','default'),(412,59,'_related_posts_preview_mode','default'),(413,59,'_related_posts_column_number','default'),(414,59,'_related_posts_align_center','default'),(415,59,'_related_posts_full_width','default'),(416,59,'_related_posts_snap_items','default'),(417,59,'_related_posts_display_taxonomies','default'),(418,59,'_related_posts_all_items_btn_display','default'),(419,59,'_related_posts_all_items_url_type','default'),(420,59,'aux_metafields_custom_styles',''),(421,59,'_overview','<p>Architecture is an art that works hand-in-hand with science to design places where people can live, eat, work and play. As a leader of various projects, from something as small as an addition to someone\'s home, to something as large as a hospital, college campus, or an entire neighbourhood, the role of an architect is to bring together the creative ideas and visions of the client and keep in mind the needs of those that will be using the new space.</p>'),(422,59,'_overview_title','Construction role'),(423,59,'auxin_import_post','938'),(424,60,'auxin-autop','no'),(425,60,'_thumbnail_id','16'),(426,60,'page_elementor_header_template','25'),(427,60,'page_header_use_legacy','default'),(428,60,'page_overlay_header','default'),(429,60,'page_header_top_sticky','default'),(430,60,'page_elementor_footer_template','112'),(431,60,'page_footer_use_legacy','default'),(432,60,'page_footer_attribution','default'),(433,60,'page_footer_is_sticky','default'),(434,60,'content_layout','default'),(435,60,'show_content_top_margin','default'),(436,60,'page_show_goto_top_btn','default'),(437,60,'page_goto_top_alignment','default'),(438,60,'aux_title_bar_show','default'),(439,60,'subtitle_position','before'),(440,60,'aux_title_bar_preset','default'),(441,60,'aux_title_bar_enable_customize','0'),(442,60,'aux_title_bar_content_width_type','boxed'),(443,60,'aux_title_bar_content_section_height','auto'),(444,60,'aux_title_bar_title_show','1'),(445,60,'aux_title_bar_heading_bordered','0'),(446,60,'aux_title_bar_heading_boxed','0'),(447,60,'aux_title_bar_meta_enabled','0'),(448,60,'aux_title_bar_bread_enabled','1'),(449,60,'aux_title_bar_bread_bordered','0'),(450,60,'aux_title_bar_text_align','left'),(451,60,'aux_title_bar_overlay_pattern','none'),(452,60,'aux_title_bar_overlay_pattern_opacity','0.15'),(453,60,'aux_title_bar_color_style','dark'),(454,60,'aux_title_bar_bg_show','0'),(455,60,'aux_title_bar_bg_parallax','0'),(456,60,'aux_title_bar_bg_size','cover'),(457,60,'aux_custom_bg_show','0'),(458,60,'aux_custom_bg_repeat','repeat'),(459,60,'aux_custom_bg_attach','scroll'),(460,60,'aux_custom_bg_position','left top'),(461,60,'aux_custom_bg_size','auto'),(462,60,'top_slider_id','none'),(463,60,'_no_feature_image_in_single','0'),(464,60,'_overview_info_alignment','default'),(465,60,'_side_info_pos','default'),(466,60,'_sticky_sidebar','default'),(467,60,'_side_info_font_color','dark'),(468,60,'_show_next_prev_nav','default'),(469,60,'_next_prev_nav_skin','default'),(470,60,'_show_side_info_meta','default'),(471,60,'_side_info_dicplay_cat','default'),(472,60,'_side_info_dicplay_tag','default'),(473,60,'_display_related','default'),(474,60,'_related_posts_preview_mode','default'),(475,60,'_related_posts_column_number','default'),(476,60,'_related_posts_align_center','default'),(477,60,'_related_posts_full_width','default'),(478,60,'_related_posts_snap_items','default'),(479,60,'_related_posts_display_taxonomies','default'),(480,60,'_related_posts_all_items_btn_display','default'),(481,60,'_related_posts_all_items_url_type','default'),(482,60,'aux_metafields_custom_styles',''),(483,60,'_overview','<p>Architecture is an art that works hand-in-hand with science to design places where people can live, eat, work and play. As a leader of various projects, from something as small as an addition to someone\'s home, to something as large as a hospital, college campus, or an entire neighbourhood, the role of an architect is to bring together the creative ideas and visions of the client and keep in mind the needs of those that will be using the new space.</p>'),(484,60,'_overview_title','Lighting Design'),(485,60,'auxin_import_post','935'),(486,61,'auxin-autop','no'),(488,61,'page_elementor_header_template','134'),(489,61,'page_header_use_legacy','default'),(490,61,'page_overlay_header','yes'),(491,61,'page_header_top_sticky','default'),(492,61,'page_elementor_footer_template','69'),(493,61,'page_footer_use_legacy','default'),(494,61,'page_footer_attribution','default'),(495,61,'page_footer_is_sticky','default'),(496,61,'content_layout','default'),(497,61,'show_content_top_margin','default'),(498,61,'page_show_goto_top_btn','default'),(499,61,'page_goto_top_alignment','default'),(500,61,'aux_title_bar_show','default'),(501,61,'subtitle_position','before'),(502,61,'aux_title_bar_preset','default'),(503,61,'aux_title_bar_enable_customize','0'),(504,61,'aux_title_bar_content_width_type','boxed'),(505,61,'aux_title_bar_content_section_height','auto'),(506,61,'aux_title_bar_title_show','1'),(507,61,'aux_title_bar_heading_bordered','0'),(508,61,'aux_title_bar_heading_boxed','0'),(509,61,'aux_title_bar_meta_enabled','0'),(510,61,'aux_title_bar_bread_enabled','1'),(511,61,'aux_title_bar_bread_bordered','0'),(512,61,'aux_title_bar_text_align','left'),(513,61,'aux_title_bar_overlay_pattern','none'),(514,61,'aux_title_bar_overlay_pattern_opacity','0.15'),(515,61,'aux_title_bar_color_style','dark'),(516,61,'aux_title_bar_bg_show','0'),(517,61,'aux_title_bar_bg_parallax','0'),(518,61,'aux_title_bar_bg_size','cover'),(519,61,'aux_custom_bg_show','0'),(520,61,'aux_custom_bg_repeat','no-repeat'),(521,61,'aux_custom_bg_attach','scroll'),(522,61,'aux_custom_bg_position','left top'),(523,61,'aux_custom_bg_size','auto'),(524,61,'top_slider_id','none'),(525,61,'_no_feature_image_in_single','1'),(526,61,'_overview_info_alignment','default'),(527,61,'_side_info_pos','top-down'),(528,61,'_sticky_sidebar','default'),(529,61,'_side_info_font_color','dark'),(530,61,'_show_next_prev_nav','default'),(531,61,'_next_prev_nav_skin','default'),(532,61,'_show_side_info_meta','default'),(533,61,'_side_info_dicplay_cat','default'),(534,61,'_side_info_dicplay_tag','default'),(535,61,'_display_related','no'),(536,61,'_related_posts_preview_mode','default'),(537,61,'_related_posts_column_number','default'),(538,61,'_related_posts_align_center','default'),(539,61,'_related_posts_full_width','default'),(540,61,'_related_posts_snap_items','default'),(541,61,'_related_posts_display_taxonomies','default'),(542,61,'_related_posts_all_items_btn_display','default'),(543,61,'_related_posts_all_items_url_type','default'),(544,61,'aux_metafields_custom_styles',''),(546,61,'_overview_title','Motorized Auditorium Curtain Tracks'),(547,61,'auxin_import_post','932'),(672,64,'auxin-autop','no'),(673,64,'_form','[text* text-289 placeholder \"Name*\"]\n[text* text-289 placeholder \"Family*\"]\n[text* text-289 placeholder \"Subject*\"]\n[textarea* textarea-998 placeholder \"message*\"]\n[submit \"SEND NOW\"]'),(674,64,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:65:\"Architect Pro - Phlox Elementor WordPress Theme  \"[your-subject]\"\";s:6:\"sender\";s:70:\"Architect Pro - Phlox Elementor WordPress Theme  <wordpress@phlox.pro>\";s:9:\"recipient\";s:24:\"sarairezanejad@gmail.com\";s:4:\"body\";s:229:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Architect Pro - Phlox Elementor WordPress Theme  (https://demo.phlox.pro/portfolio-architect)\";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;}'),(675,64,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:65:\"Architect Pro - Phlox Elementor WordPress Theme  \"[your-subject]\"\";s:6:\"sender\";s:70:\"Architect Pro - Phlox Elementor WordPress Theme  <wordpress@phlox.pro>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:171:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Architect Pro - Phlox Elementor WordPress Theme  (https://demo.phlox.pro/portfolio-architect)\";s:18:\"additional_headers\";s:34:\"Reply-To: sarairezanejad@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(676,64,'_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:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s: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.\";}'),(677,64,'_additional_settings',''),(678,64,'_locale','en_US'),(679,64,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(680,64,'auxin_import_post','565'),(929,69,'auxin-autop','no'),(930,69,'_elementor_template_type','footer'),(931,69,'_elementor_edit_mode','builder'),(932,69,'_elementor_version','3.5.6'),(933,69,'_wp_page_template','default'),(934,69,'_elementor_data','[{\"id\":\"966bacc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"z_index\":\"9\",\"custom_css\":\"selector{\\n    margin: 0 0 0 29%;\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        margin:0 0 0 15%;\\n    }\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"eff4af3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"align\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .elementor-element-populated {\\n        padding: 30px 100px 30px 70px;\\n    }\\n}\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c03326d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets Talk About Your Project.\",\"divider\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"custom_css\":\"selector .aux-modern-heading-primary:after{\\n    content: \\\"\\\";\\n    width: 90px;\\n    height: 30px;\\n    background-image: url(\\\"data:image\\/svg+xml,%3Csvg xmlns=\'http:\\/\\/www.w3.org\\/2000\\/svg\' width=\'87.542\' height=\'32.602\' viewBox=\'0 0 87.542 32.602\'%3E%3Cpath id=\'arrow-right\' d=\'M58.542,17.419l-16.3,16.3-1.567-1.567L54.3,18.529H-29V16.313H54.3L40.674,2.685l1.567-1.567,16.3,16.3Z\' transform=\'translate(29 -1.118)\' fill=\'%23fff\'\\/%3E%3C\\/svg%3E\\\");\\n    background-repeat: no-repeat;\\n    display: block;\\n    margin-top: 15px;\\n}\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3d4392f\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text_normal_color\":\"#FFFFFF\",\"__globals__\":{\"btn_bg_normal_color\":\"\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"32\",\"bottom\":\"13\",\"left\":\"32\",\"isLinked\":\"\"},\"text_normal_typo_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__dynamic__\":[],\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"btn_bg_normal_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"d78342e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"81720b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"f8f7d0f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#A2A2A2B8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bfd5c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"7723a9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone:\",\"divider\":\"\",\"description\":\"<p>+123 4567 890<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"b1eb78b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a1bfed3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address:\",\"divider\":\"\",\"description\":\"<p>Address 123 line 2<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"9b6fb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b59132f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email:\",\"divider\":\"\",\"description\":\"<p>info@yourdomain.com<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3d26ed2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b85fb6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social:\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"4d86c2f\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"face book -\",\"icon\":\"check-1\",\"_id\":\"b2bf13c\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"youtube -\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"ce345d3\"},{\"text_primary\":\"instagram \",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0f8c9ef\"},{\"text_primary\":\"twitter -\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"7a3baa5\"},{\"text_primary\":\"behance\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"44767d4\"}],\"direction\":\"horizontal\",\"list_column_gutter\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_weight\":\"300\",\"text1_typography_text_transform\":\"capitalize\",\"__dynamic__\":[],\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"433dc05\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9dda4b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"align\":\"space-between\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"a44d6a8\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width_mobile\":\"inherit\",\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"logo_type\":\"secondary\"},\"elements\":[],\"widgetType\":\"aux_logo\"},{\"id\":\"917e788\",\"elType\":\"widget\",\"settings\":{\"copyright_text\":\"&copy; {{Y}} Amaeka Technologies\",\"copyright_color\":\"#5B5B5B99\",\"copyright_typo_typography\":\"custom\",\"copyright_typo_font_size\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"copyright_typo_font_weight\":\"400\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"align_mobile\":\"center\",\"copyright_typo_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"aux_copyright\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"22f8327\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a71179f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(935,69,'_elementor_controls_usage','a:7:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"title_section\";a:2:{s:5:\"title\";i:5;s:7:\"divider\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:2:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:12:\"title_margin\";i:4;}s:25:\"description_style_section\";a:4:{s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:39:\"description_typography_font_size_mobile\";i:3;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:5;s:19:\"aux_animation_delay\";i:3;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:4:{s:24:\"btn_bg_normal_background\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:33:\"text_normal_typo_font_size_mobile\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:33:\"aux_core_common_inview_transition\";a:2:{s:18:\"aux_animation_name\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:5:\"align\";i:2;s:19:\"_inline_size_tablet\";i:4;s:12:\"align_mobile\";i:1;s:12:\"_inline_size\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:1;s:13:\"margin_tablet\";i:4;s:14:\"padding_mobile\";i:4;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:1:{s:20:\"aux_animation_easing\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:5:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:4;s:7:\"z_index\";i:1;s:7:\"padding\";i:2;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:1;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:3:{s:9:\"direction\";i:1;s:18:\"list_column_gutter\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:18:\"list_style_section\";a:1:{s:9:\"connector\";i:1;}s:18:\"text_style_section\";a:5:{s:27:\"text1_typography_typography\";i:1;s:26:\"text1_typography_font_size\";i:1;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:1;s:33:\"text1_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_mobile\";i:1;}}s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:12:\"align_mobile\";i:1;s:9:\"logo_type\";i:1;}}}}s:13:\"aux_copyright\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:14:\"copyright_text\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_copyright\";a:5:{s:15:\"copyright_color\";i:1;s:25:\"copyright_typo_typography\";i:1;s:24:\"copyright_typo_font_size\";i:1;s:26:\"copyright_typo_font_weight\";i:1;s:31:\"copyright_typo_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;s:21:\"_element_width_mobile\";i:1;}}}}}'),(937,69,'auxin_import_post','112'),(938,70,'auxin-autop','no'),(939,70,'_wp_page_template','templates/page-builder-content.php'),(940,70,'page_footer_attribution','default'),(941,70,'page_footer_is_sticky','default'),(942,70,'page_elementor_header_template','25'),(943,70,'page_header_use_legacy','default'),(944,70,'page_overlay_header','default'),(945,70,'page_header_top_sticky','default'),(946,70,'aux_page_template_content_location','above-in-frame'),(947,70,'page_elementor_footer_template','112'),(948,70,'page_footer_use_legacy','default'),(949,70,'page_header_section_use_legacy','default'),(950,70,'page_header_menu','default'),(951,70,'display_page_header_cover','0'),(952,70,'page_header_navigation_layout','default'),(953,70,'page_header_width','default'),(954,70,'page_header_search_button','default'),(955,70,'page_header_logo_display','default'),(956,70,'page_header_border_bottom','default'),(957,70,'page_header_animation','default'),(958,70,'page_header_color_scheme','default'),(959,70,'page_header_sticky_color_scheme','default'),(960,70,'page_header_logo_can_scale','default'),(961,70,'page_vertical_header_items_align','default'),(962,70,'page_vertical_menu_footer_display','default'),(963,70,'page_vertical_header_search_border','default'),(964,70,'page_header_social_icons','default'),(965,70,'page_header_social_icons_size','default'),(966,70,'page_top_header_section_use_legacy','default'),(967,70,'aux_show_topheader','default'),(968,70,'aux_topheader_layout','default'),(969,70,'aux_show_topheader_message','default'),(970,70,'aux_show_topheader_secondary_message','default'),(971,70,'page_general_footer_section_use_legacy','default'),(972,70,'page_show_footer','default'),(973,70,'page_footer_components_layout','default'),(974,70,'page_show_subfooter','default'),(975,70,'content_layout','full'),(976,70,'page_layout','default'),(977,70,'page_sidebar_style','default'),(978,70,'show_content_top_margin','default'),(979,70,'page_show_goto_top_btn','default'),(980,70,'page_goto_top_alignment','default'),(981,70,'aux_title_bar_show','default'),(982,70,'subtitle_position','before'),(983,70,'aux_title_bar_preset','default'),(984,70,'aux_title_bar_enable_customize','0'),(985,70,'aux_title_bar_content_width_type','boxed'),(986,70,'aux_title_bar_content_section_height','auto'),(987,70,'aux_title_bar_title_show','1'),(988,70,'aux_title_bar_heading_bordered','0'),(989,70,'aux_title_bar_heading_boxed','0'),(990,70,'aux_title_bar_meta_enabled','0'),(991,70,'aux_title_bar_bread_enabled','1'),(992,70,'aux_title_bar_bread_bordered','0'),(993,70,'aux_title_bar_text_align','left'),(994,70,'aux_title_bar_overlay_pattern','none'),(995,70,'aux_title_bar_overlay_pattern_opacity','0.15'),(996,70,'aux_title_bar_color_style','dark'),(997,70,'aux_title_bar_bg_show','0'),(998,70,'aux_title_bar_bg_parallax','0'),(999,70,'aux_title_bar_bg_size','cover'),(1000,70,'aux_custom_bg_show','0'),(1001,70,'aux_custom_bg_repeat','repeat'),(1002,70,'aux_custom_bg_attach','scroll'),(1003,70,'aux_custom_bg_position','left top'),(1004,70,'aux_custom_bg_size','auto'),(1005,70,'top_slider_id','none'),(1006,70,'aux_metafields_custom_styles',''),(1007,70,'_elementor_edit_mode','builder'),(1008,70,'_elementor_template_type','wp-page'),(1009,70,'_elementor_version','3.5.6'),(1010,70,'_elementor_data','[{\"id\":\"9e69f39\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"80c3641\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"63247ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Ready to start project \",\"title_secondary_highlight\":\"let\'s talk\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"420\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"79ea790\",\"elType\":\"widget\",\"settings\":{\"type\":\"cf7\",\"cf7_shortcode\":\"[contact-form-7 id=\\\"64\\\" title=\\\"contact form\\\"]\",\"general_input_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"general_input_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"general_input_border_border\":\"solid\",\"general_input_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"general_input_border_color\":\"#3E3E3E\",\"placeholder_typography_typography\":\"custom\",\"placeholder_typography_font_family\":\"Mukta\",\"placeholder_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"placeholder_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"placeholder_typography_font_weight\":\"300\",\"placeholder_typography_text_transform\":\"capitalize\",\"placeholder_typography_font_style\":\"normal\",\"placeholder_color\":\"#3E3E3E\",\"textarea_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"textarea_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"textarea_border_border\":\"solid\",\"textarea_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"textarea_border_color\":\"#3E3E3E\",\"textarea_placeholder_typography_typography\":\"custom\",\"textarea_placeholder_typography_font_family\":\"Mukta\",\"textarea_placeholder_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"textarea_placeholder_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"textarea_placeholder_typography_font_weight\":\"300\",\"textarea_placeholder_typography_text_transform\":\"capitalize\",\"textarea_placeholder_typography_font_style\":\"normal\",\"textarea_placeholder_color\":\"#3E3E3E\",\"submit_input_typography_typography\":\"custom\",\"submit_input_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"submit_input_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"submit_input_typography_font_weight\":\"700\",\"submit_input_typography_text_transform\":\"uppercase\",\"submit_input_color\":\"#FFFFFF\",\"submit_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"submit_input_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":\"\"},\"submit_input_background_background\":\"classic\",\"submit_input_background_color\":\"#FF7E44\",\"submit_input_background_hover_background\":\"classic\",\"submit_input_background_hover_color\":\"#191919\",\"custom_css\":\"selector input[type=\'submit\']{\\n    float: right;\\n}\\nselector textarea{\\n    height: 40px;\\n    min-height: 40px;\\n}\",\"__globals__\":{\"submit_input_background_color\":\"globals\\/colors?id=secondary\",\"submit_input_color\":\"globals\\/colors?id=accent\",\"submit_input_background_hover_color\":\"globals\\/colors?id=primary\",\"textarea_placeholder_typography_typography\":\"\",\"placeholder_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2300,\"aux_animation_delay\":300},\"elements\":[],\"widgetType\":\"aux_contact_form\"},{\"id\":\"cbe8bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"206\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(25, 25, 25, 0.12);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:150px;\\n    }\\n    selector{\\n        bottom:-90px;\\n        left:-150px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_right\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-115\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-180\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"},{\"id\":\"18ff087\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"5b2a60e\",\"elType\":\"widget\",\"settings\":{\"latitude\":\"54\",\"longitude\":\"16\",\"height\":\"720\",\"style\":\"[\\n    {\\n        \\\"featureType\\\": \\\"all\\\",\\n        \\\"elementType\\\": \\\"labels.text.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"saturation\\\": 36\\n            },\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 40\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"all\\\",\\n        \\\"elementType\\\": \\\"labels.text.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"visibility\\\": \\\"on\\\"\\n            },\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 16\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"all\\\",\\n        \\\"elementType\\\": \\\"labels.icon\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"visibility\\\": \\\"off\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"administrative\\\",\\n        \\\"elementType\\\": \\\"geometry.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 20\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"administrative\\\",\\n        \\\"elementType\\\": \\\"geometry.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 17\\n            },\\n            {\\n                \\\"weight\\\": 1.2\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"landscape\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 20\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"poi\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 21\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.highway\\\",\\n        \\\"elementType\\\": \\\"geometry.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 17\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.highway\\\",\\n        \\\"elementType\\\": \\\"geometry.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 29\\n            },\\n            {\\n                \\\"weight\\\": 0.2\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.arterial\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 18\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 16\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"geometry.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#272727\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"labels.text.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#bababa\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"labels.text.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"weight\\\": \\\"3.66\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"transit\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 19\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"water\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 17\\n            }\\n        ]\\n    }\\n]\",\"show_mapcontrols\":\"\",\"zoom\":\"17\",\"attach_id\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/wp-content\\/uploads\\/2020\\/10\\/Untitled.png\",\"id\":\"1134\"},\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_gmap\"},{\"id\":\"3335bbe\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        padding: 0px 20px 0px 20px;\\n    }\\n}\"},\"elements\":[{\"id\":\"35b9aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bdf31c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone:\",\"divider\":\"\",\"description\":\"<p>+123 4567 890<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#FFFFFFA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 6px;\\n    height: 6px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8028f19\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1f9d226\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address:\",\"divider\":\"\",\"description\":\"<p>Asdress 123,line 2<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#FFFFFFA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_width\":{\"unit\":\"px\",\"size\":\"235\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 6px;\\n    height: 6px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fc49959\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7d296fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email:\",\"divider\":\"\",\"description\":\"<p>info@yourdomain.com<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#FFFFFFA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 6px;\\n    height: 6px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1011,70,'aux_page_custom_css','footer{\r\n    display:none;\r\n}'),(1012,70,'_elementor_controls_usage','a:5:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:4:{s:5:\"title\";i:5;s:9:\"title_tag\";i:1;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:4;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:4;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:5;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:4;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:1;}s:20:\"title2_style_heading\";a:11:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:7:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:24:\"title2_highlighted_color\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:1;s:13:\"divider_width\";i:1;s:14:\"divider_margin\";i:1;s:13:\"divider_color\";i:1;}s:25:\"description_style_section\";a:7:{s:17:\"description_color\";i:4;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:1;s:34:\"description_typography_font_weight\";i:1;s:39:\"description_typography_font_size_tablet\";i:4;s:17:\"description_width\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:5;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:3;}s:14:\"_section_style\";a:1:{s:14:\"_margin_tablet\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:16:\"aux_contact_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"contact_section\";a:2:{s:4:\"type\";i:1;s:13:\"cf7_shortcode\";i:1;}}s:5:\"style\";a:5:{s:21:\"general_input_section\";a:5:{s:21:\"general_input_padding\";i:1;s:20:\"general_input_margin\";i:1;s:27:\"general_input_border_border\";i:1;s:26:\"general_input_border_width\";i:1;s:26:\"general_input_border_color\";i:1;}s:19:\"placeholder_section\";a:8:{s:33:\"placeholder_typography_typography\";i:1;s:34:\"placeholder_typography_font_family\";i:1;s:32:\"placeholder_typography_font_size\";i:1;s:39:\"placeholder_typography_font_size_mobile\";i:1;s:34:\"placeholder_typography_font_weight\";i:1;s:37:\"placeholder_typography_text_transform\";i:1;s:33:\"placeholder_typography_font_style\";i:1;s:17:\"placeholder_color\";i:1;}s:16:\"textarea_section\";a:5:{s:16:\"textarea_padding\";i:1;s:15:\"textarea_margin\";i:1;s:22:\"textarea_border_border\";i:1;s:21:\"textarea_border_width\";i:1;s:21:\"textarea_border_color\";i:1;}s:28:\"textarea_placeholder_section\";a:8:{s:42:\"textarea_placeholder_typography_typography\";i:1;s:43:\"textarea_placeholder_typography_font_family\";i:1;s:41:\"textarea_placeholder_typography_font_size\";i:1;s:48:\"textarea_placeholder_typography_font_size_mobile\";i:1;s:43:\"textarea_placeholder_typography_font_weight\";i:1;s:46:\"textarea_placeholder_typography_text_transform\";i:1;s:42:\"textarea_placeholder_typography_font_style\";i:1;s:26:\"textarea_placeholder_color\";i:1;}s:20:\"submit_input_section\";a:12:{s:34:\"submit_input_typography_typography\";i:1;s:33:\"submit_input_typography_font_size\";i:1;s:40:\"submit_input_typography_font_size_mobile\";i:1;s:35:\"submit_input_typography_font_weight\";i:1;s:38:\"submit_input_typography_text_transform\";i:1;s:18:\"submit_input_color\";i:1;s:20:\"submit_input_padding\";i:1;s:27:\"submit_input_padding_mobile\";i:1;s:34:\"submit_input_background_background\";i:1;s:29:\"submit_input_background_color\";i:1;s:40:\"submit_input_background_hover_background\";i:1;s:35:\"submit_input_background_hover_color\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:16:\"content_position\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:3;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}}}}s:8:\"aux_gmap\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:11:\"map_section\";a:3:{s:8:\"latitude\";i:1;s:9:\"longitude\";i:1;s:9:\"attach_id\";i:1;}}s:5:\"style\";a:1:{s:15:\"general_section\";a:4:{s:6:\"height\";i:1;s:5:\"style\";i:1;s:16:\"show_mapcontrols\";i:1;s:4:\"zoom\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}}'),(1014,70,'auxin_import_post','39'),(1015,71,'auxin-autop','no'),(1016,71,'_wp_page_template','templates/page-builder-content.php'),(1017,71,'page_footer_attribution','default'),(1018,71,'page_footer_is_sticky','default'),(1019,71,'page_elementor_header_template','25'),(1020,71,'page_header_use_legacy','default'),(1021,71,'page_overlay_header','yes'),(1022,71,'page_header_top_sticky','default'),(1023,71,'aux_page_template_content_location','above-in-frame'),(1024,71,'page_elementor_footer_template','112'),(1025,71,'page_footer_use_legacy','default'),(1026,71,'page_header_section_use_legacy','default'),(1027,71,'page_header_menu','default'),(1028,71,'display_page_header_cover','0'),(1029,71,'page_header_navigation_layout','default'),(1030,71,'page_header_width','default'),(1031,71,'page_header_search_button','default'),(1032,71,'page_header_logo_display','default'),(1033,71,'page_header_border_bottom','default'),(1034,71,'page_header_animation','default'),(1035,71,'page_header_color_scheme','default'),(1036,71,'page_header_sticky_color_scheme','default'),(1037,71,'page_header_logo_can_scale','default'),(1038,71,'page_vertical_header_items_align','default'),(1039,71,'page_vertical_menu_footer_display','default'),(1040,71,'page_vertical_header_search_border','default'),(1041,71,'page_header_social_icons','default'),(1042,71,'page_header_social_icons_size','default'),(1043,71,'page_top_header_section_use_legacy','default'),(1044,71,'aux_show_topheader','default'),(1045,71,'aux_topheader_layout','default'),(1046,71,'aux_show_topheader_message','default'),(1047,71,'aux_show_topheader_secondary_message','default'),(1048,71,'page_general_footer_section_use_legacy','default'),(1049,71,'page_show_footer','default'),(1050,71,'page_footer_components_layout','default'),(1051,71,'page_show_subfooter','default'),(1052,71,'content_layout','full'),(1053,71,'page_layout','default'),(1054,71,'page_sidebar_style','default'),(1055,71,'show_content_top_margin','default'),(1056,71,'page_show_goto_top_btn','default'),(1057,71,'page_goto_top_alignment','default'),(1058,71,'aux_title_bar_show','default'),(1059,71,'subtitle_position','before'),(1060,71,'aux_title_bar_preset','default'),(1061,71,'aux_title_bar_enable_customize','0'),(1062,71,'aux_title_bar_content_width_type','boxed'),(1063,71,'aux_title_bar_content_section_height','auto'),(1064,71,'aux_title_bar_title_show','1'),(1065,71,'aux_title_bar_heading_bordered','0'),(1066,71,'aux_title_bar_heading_boxed','0'),(1067,71,'aux_title_bar_meta_enabled','0'),(1068,71,'aux_title_bar_bread_enabled','1'),(1069,71,'aux_title_bar_bread_bordered','0'),(1070,71,'aux_title_bar_text_align','left'),(1071,71,'aux_title_bar_overlay_pattern','none'),(1072,71,'aux_title_bar_overlay_pattern_opacity','0.15'),(1073,71,'aux_title_bar_color_style','dark'),(1074,71,'aux_title_bar_bg_show','0'),(1075,71,'aux_title_bar_bg_parallax','0'),(1076,71,'aux_title_bar_bg_size','cover'),(1077,71,'aux_custom_bg_show','0'),(1078,71,'aux_custom_bg_repeat','repeat'),(1079,71,'aux_custom_bg_attach','scroll'),(1080,71,'aux_custom_bg_position','left top'),(1081,71,'aux_custom_bg_size','auto'),(1082,71,'top_slider_id','none'),(1083,71,'aux_metafields_custom_styles',''),(1084,71,'_elementor_edit_mode','builder'),(1085,71,'_elementor_template_type','wp-page'),(1086,71,'_elementor_version','3.5.6'),(1087,71,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\",\"title_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(143, 21.00000000000002, 24.000000000000092, 0.3)\"},\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1088,71,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(1090,71,'auxin_import_post','37'),(1091,72,'auxin-autop','no'),(1092,72,'_wp_page_template','templates/page-builder-content.php'),(1093,72,'page_footer_attribution','default'),(1094,72,'page_footer_is_sticky','default'),(1095,72,'page_elementor_header_template','25'),(1096,72,'page_header_use_legacy','default'),(1097,72,'page_overlay_header','default'),(1098,72,'page_header_top_sticky','default'),(1099,72,'aux_page_template_content_location','above-in-frame'),(1100,72,'page_elementor_footer_template','112'),(1101,72,'page_footer_use_legacy','default'),(1102,72,'page_header_section_use_legacy','default'),(1103,72,'page_header_menu','default'),(1104,72,'display_page_header_cover','0'),(1105,72,'page_header_navigation_layout','default'),(1106,72,'page_header_width','default'),(1107,72,'page_header_search_button','default'),(1108,72,'page_header_logo_display','default'),(1109,72,'page_header_border_bottom','default'),(1110,72,'page_header_animation','default'),(1111,72,'page_header_color_scheme','default'),(1112,72,'page_header_sticky_color_scheme','default'),(1113,72,'page_header_logo_can_scale','default'),(1114,72,'page_vertical_header_items_align','default'),(1115,72,'page_vertical_menu_footer_display','default'),(1116,72,'page_vertical_header_search_border','default'),(1117,72,'page_header_social_icons','default'),(1118,72,'page_header_social_icons_size','default'),(1119,72,'page_top_header_section_use_legacy','default'),(1120,72,'aux_show_topheader','default'),(1121,72,'aux_topheader_layout','default'),(1122,72,'aux_show_topheader_message','default'),(1123,72,'aux_show_topheader_secondary_message','default'),(1124,72,'page_general_footer_section_use_legacy','default'),(1125,72,'page_show_footer','default'),(1126,72,'page_footer_components_layout','default'),(1127,72,'page_show_subfooter','default'),(1128,72,'content_layout','full'),(1129,72,'page_layout','default'),(1130,72,'page_sidebar_style','default'),(1131,72,'show_content_top_margin','default'),(1132,72,'page_show_goto_top_btn','default'),(1133,72,'page_goto_top_alignment','default'),(1134,72,'aux_title_bar_show','default'),(1135,72,'subtitle_position','before'),(1136,72,'aux_title_bar_preset','default'),(1137,72,'aux_title_bar_enable_customize','0'),(1138,72,'aux_title_bar_content_width_type','boxed'),(1139,72,'aux_title_bar_content_section_height','auto'),(1140,72,'aux_title_bar_title_show','1'),(1141,72,'aux_title_bar_heading_bordered','0'),(1142,72,'aux_title_bar_heading_boxed','0'),(1143,72,'aux_title_bar_meta_enabled','0'),(1144,72,'aux_title_bar_bread_enabled','1'),(1145,72,'aux_title_bar_bread_bordered','0'),(1146,72,'aux_title_bar_text_align','left'),(1147,72,'aux_title_bar_overlay_pattern','none'),(1148,72,'aux_title_bar_overlay_pattern_opacity','0.15'),(1149,72,'aux_title_bar_color_style','dark'),(1150,72,'aux_title_bar_bg_show','0'),(1151,72,'aux_title_bar_bg_parallax','0'),(1152,72,'aux_title_bar_bg_size','cover'),(1153,72,'aux_custom_bg_show','0'),(1154,72,'aux_custom_bg_repeat','repeat'),(1155,72,'aux_custom_bg_attach','scroll'),(1156,72,'aux_custom_bg_position','left top'),(1157,72,'aux_custom_bg_size','auto'),(1158,72,'top_slider_id','none'),(1159,72,'aux_metafields_custom_styles',''),(1160,72,'_elementor_edit_mode','builder'),(1161,72,'_elementor_template_type','wp-page'),(1162,72,'_elementor_version','3.5.6'),(1163,72,'_elementor_data','[{\"id\":\"ca96cdd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b0c5a6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"318d61b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bd2612\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"82bf8b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fdbc34f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"d23831d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"de73bac\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"show_filters\":\"\",\"perpage\":\"9\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#7A7A7A\",\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Mukta\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .wpulike{\\n    display: none;\\n}\\nselector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: relative;\\n    top: -100px;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: #fff;\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-col:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-col:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\nselector .aux-pagination{\\n    display: flex;\\n    justify-content: center;\\n}\\nselector .aux-pagination .prev , selector .aux-pagination .next{\\n    display: none;\\n}\\nselector .aux-pagination a{\\n    color: var( --e-global-color-primary );\\n    font-size: 18px;\\n    font-weight: bold;\\n    border-radius: 0;\\n}\\nselector .aux-pagination .active a{\\n    color: #fff;\\n    background-color: var( --e-global-color-primary );\\n    border-color: var( --e-global-color-primary );\\n    border-radius: 0;\\n    font-size: 18px;\\n    font-weight: bold;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size:23px !important;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 40px 40px;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 30px 30px;\\n    }\\n    selector .entry-title a{\\n        font-size:17px !important;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"info_color\":\"globals\\/colors?id=text\",\"info_typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"columns_tablet\":\"2\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1164,72,'_elementor_controls_usage','a:4:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:9:\"title_tag\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;s:21:\"title_secondary_after\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:1;s:12:\"title_margin\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:20:\"title2_style_heading\";a:10:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:12:\"title2_width\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:6:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:25:\"description_style_section\";a:8:{s:34:\"description_typography_font_family\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:39:\"description_typography_font_size_tablet\";i:2;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:17:\"description_width\";i:1;s:39:\"description_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:26:\"aux_recent_portfolios_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"settings\";a:2:{s:15:\"filters_section\";a:1:{s:12:\"show_filters\";i:1;}s:16:\"paginate_section\";a:1:{s:7:\"perpage\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:8:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:27:\"info_typography_font_family\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(1166,72,'auxin_import_post','35'),(1167,73,'auxin-autop','no'),(1168,73,'_wp_page_template','templates/page-builder-content.php'),(1169,73,'page_footer_attribution','default'),(1170,73,'page_footer_is_sticky','default'),(1171,73,'page_elementor_header_template','134'),(1172,73,'page_header_use_legacy','default'),(1173,73,'page_overlay_header','yes'),(1174,73,'page_header_top_sticky','default'),(1175,73,'aux_page_template_content_location','above-in-frame'),(1176,73,'page_elementor_footer_template','69'),(1177,73,'page_footer_use_legacy','default'),(1178,73,'page_header_section_use_legacy','default'),(1179,73,'page_header_menu','default'),(1180,73,'display_page_header_cover','0'),(1181,73,'page_header_navigation_layout','default'),(1182,73,'page_header_width','default'),(1183,73,'page_header_search_button','default'),(1184,73,'page_header_logo_display','default'),(1185,73,'page_header_border_bottom','default'),(1186,73,'page_header_animation','default'),(1187,73,'page_header_color_scheme','default'),(1188,73,'page_header_sticky_color_scheme','default'),(1189,73,'page_header_logo_can_scale','default'),(1190,73,'page_vertical_header_items_align','default'),(1191,73,'page_vertical_menu_footer_display','default'),(1192,73,'page_vertical_header_search_border','default'),(1193,73,'page_header_social_icons','default'),(1194,73,'page_header_social_icons_size','default'),(1195,73,'page_top_header_section_use_legacy','default'),(1196,73,'aux_show_topheader','default'),(1197,73,'aux_topheader_layout','default'),(1198,73,'aux_show_topheader_message','default'),(1199,73,'aux_show_topheader_secondary_message','default'),(1200,73,'page_general_footer_section_use_legacy','default'),(1201,73,'page_show_footer','default'),(1202,73,'page_footer_components_layout','default'),(1203,73,'page_show_subfooter','default'),(1204,73,'content_layout','full'),(1205,73,'page_layout','default'),(1206,73,'page_sidebar_style','default'),(1207,73,'show_content_top_margin','default'),(1208,73,'page_show_goto_top_btn','default'),(1209,73,'page_goto_top_alignment','default'),(1210,73,'aux_title_bar_show','default'),(1211,73,'subtitle_position','before'),(1212,73,'aux_title_bar_preset','default'),(1213,73,'aux_title_bar_enable_customize','0'),(1214,73,'aux_title_bar_content_width_type','boxed'),(1215,73,'aux_title_bar_content_section_height','auto'),(1216,73,'aux_title_bar_title_show','1'),(1217,73,'aux_title_bar_heading_bordered','0'),(1218,73,'aux_title_bar_heading_boxed','0'),(1219,73,'aux_title_bar_meta_enabled','0'),(1220,73,'aux_title_bar_bread_enabled','1'),(1221,73,'aux_title_bar_bread_bordered','0'),(1222,73,'aux_title_bar_text_align','left'),(1223,73,'aux_title_bar_overlay_pattern','none'),(1224,73,'aux_title_bar_overlay_pattern_opacity','0.15'),(1225,73,'aux_title_bar_color_style','dark'),(1226,73,'aux_title_bar_bg_show','0'),(1227,73,'aux_title_bar_bg_parallax','0'),(1228,73,'aux_title_bar_bg_size','cover'),(1229,73,'aux_custom_bg_show','0'),(1230,73,'aux_custom_bg_repeat','repeat'),(1231,73,'aux_custom_bg_attach','scroll'),(1232,73,'aux_custom_bg_position','left top'),(1233,73,'aux_custom_bg_size','auto'),(1234,73,'top_slider_id','none'),(1235,73,'aux_metafields_custom_styles',''),(1237,73,'_elementor_template_type','wp-page'),(1238,73,'_elementor_version','3.5.6'),(1239,73,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"},\"background_overlay_color\":\"#8F1518\"},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FFFFFF\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_highlighted_text_shadow_text_shadow_type\":\"yes\",\"title2_highlighted_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(46.5, 23.319497282608694, 23.319497282608694, 0.3)\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1240,73,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(1242,73,'auxin_import_post','33'),(1243,74,'auxin-autop','no'),(1244,74,'_wp_page_template','default'),(1245,74,'page_footer_attribution','default'),(1246,74,'page_footer_is_sticky','default'),(1247,74,'page_elementor_header_template','7'),(1248,74,'page_header_use_legacy','default'),(1249,74,'page_overlay_header','yes'),(1250,74,'page_header_top_sticky','default'),(1251,74,'aux_page_template_content_location','above-in-frame'),(1252,74,'page_elementor_footer_template','69'),(1253,74,'page_footer_use_legacy','default'),(1254,74,'page_header_section_use_legacy','default'),(1255,74,'page_header_menu','default'),(1256,74,'display_page_header_cover','0'),(1257,74,'page_header_navigation_layout','default'),(1258,74,'page_header_width','default'),(1259,74,'page_header_search_button','default'),(1260,74,'page_header_logo_display','default'),(1261,74,'page_header_border_bottom','default'),(1262,74,'page_header_animation','default'),(1263,74,'page_header_color_scheme','default'),(1264,74,'page_header_sticky_color_scheme','default'),(1265,74,'page_header_logo_can_scale','default'),(1266,74,'page_vertical_header_items_align','default'),(1267,74,'page_vertical_menu_footer_display','default'),(1268,74,'page_vertical_header_search_border','default'),(1269,74,'page_header_social_icons','default'),(1270,74,'page_header_social_icons_size','default'),(1271,74,'page_top_header_section_use_legacy','default'),(1272,74,'aux_show_topheader','default'),(1273,74,'aux_topheader_layout','default'),(1274,74,'aux_show_topheader_message','default'),(1275,74,'aux_show_topheader_secondary_message','default'),(1276,74,'page_general_footer_section_use_legacy','default'),(1277,74,'page_show_footer','default'),(1278,74,'page_footer_components_layout','default'),(1279,74,'page_show_subfooter','default'),(1280,74,'content_layout','full'),(1281,74,'page_layout','default'),(1282,74,'page_sidebar_style','default'),(1283,74,'show_content_top_margin','default'),(1284,74,'page_show_goto_top_btn','default'),(1285,74,'page_goto_top_alignment','default'),(1286,74,'aux_title_bar_show','default'),(1287,74,'subtitle_position','before'),(1288,74,'aux_title_bar_preset','default'),(1289,74,'aux_title_bar_enable_customize','0'),(1290,74,'aux_title_bar_content_width_type','boxed'),(1291,74,'aux_title_bar_content_section_height','auto'),(1292,74,'aux_title_bar_title_show','1'),(1293,74,'aux_title_bar_heading_bordered','0'),(1294,74,'aux_title_bar_heading_boxed','0'),(1295,74,'aux_title_bar_meta_enabled','0'),(1296,74,'aux_title_bar_bread_enabled','1'),(1297,74,'aux_title_bar_bread_bordered','0'),(1298,74,'aux_title_bar_text_align','left'),(1299,74,'aux_title_bar_overlay_pattern','none'),(1300,74,'aux_title_bar_overlay_pattern_opacity','0.15'),(1301,74,'aux_title_bar_color_style','dark'),(1302,74,'aux_title_bar_bg_show','0'),(1303,74,'aux_title_bar_bg_parallax','0'),(1304,74,'aux_title_bar_bg_size','cover'),(1305,74,'aux_custom_bg_show','0'),(1306,74,'aux_custom_bg_repeat','repeat'),(1307,74,'aux_custom_bg_attach','scroll'),(1308,74,'aux_custom_bg_position','left top'),(1309,74,'aux_custom_bg_size','auto'),(1310,74,'top_slider_id','none'),(1311,74,'aux_metafields_custom_styles',''),(1312,74,'_elementor_edit_mode','builder'),(1313,74,'_elementor_template_type','wp-page'),(1314,74,'_elementor_version','3.5.6'),(1315,74,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\",\"cat\":[]},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/products\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1316,74,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1318,74,'auxin_import_post','31'),(1319,75,'auxin-autop','no'),(1320,75,'_elementor_template_type','kit'),(1321,75,'_elementor_edit_mode','builder'),(1322,75,'_elementor_version','3.0.15'),(1323,75,'_wp_page_template','default'),(1324,75,'_elementor_page_settings','a:11:{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:\"#191919\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:16:\"rgb(143, 20, 23)\";}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:\"#FFFFFF\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"7036ef2\";s:5:\"title\";s:16:\"Background Color\";s:5:\"color\";s:7:\"#3E3E3E\";}}s:17:\"system_typography\";a:4:{i:0;a:4:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";}i:1;a:4:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";}i:2;a:4:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Mukta\";}i:3;a:4:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Mukta\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:0:\"\";s:9:\"site_name\";s:48:\"Architect Pro - Phlox Elementor WordPress Theme \";s:16:\"site_description\";s:20:\"Automate Your Dreams\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:15:\"viewport_mobile\";s:0:\"\";s:15:\"viewport_tablet\";s:0:\"\";}'),(1325,75,'_elementor_data','[]'),(1327,75,'auxin_import_post','27'),(1328,76,'auxin-autop','no'),(1329,76,'_elementor_template_type','header'),(1330,76,'_elementor_edit_mode','builder'),(1331,76,'_elementor_version','3.0.15'),(1332,76,'_wp_page_template','default'),(1333,76,'_elementor_data','[{\"id\":\"6f1a129\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"8c63e28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ebeb8a8\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"flex_grow\":\"1\",\"width_tablet\":{\"unit\":\"%\",\"size\":\"80\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-zoom-in\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_logo\"},{\"id\":\"20c11c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL US! (+1) 888654321\",\"title_tag\":\"h5\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__dynamic__\":[],\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"-30\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"4cd48f0\",\"elType\":\"widget\",\"settings\":{\"menu_slug\":\"header-menu\",\"type\":\"burger\",\"indicator\":\"\",\"burger_menu_location\":\"overlay\",\"menu_item_typo_font_size\":{\"unit\":\"px\",\"size\":\"63\",\"sizes\":[]},\"menu_item_typo_font_weight\":\"700\",\"menu_item_typo_text_transform\":\"capitalize\",\"burger_btn_style\":\"aux-regular-medium\",\"fullscr_menu_item_typo_typography\":\"custom\",\"fullscr_menu_item_typo_font_size\":{\"unit\":\"px\",\"size\":\"63\",\"sizes\":[]},\"fullscr_menu_item_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"fullscr_menu_item_typo_font_weight\":\"700\",\"fullscr_menu_item_typo_text_transform\":\"capitalize\",\"fullscr_item_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":\"\"},\"fullscr_bg_background\":\"classic\",\"fullscr_bg_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/volkan-vardar-y7RW7g2izy0-unsplash.png\",\"id\":48},\"fullscr_bg_position\":\"center left\",\"fullscr_bg_repeat\":\"no-repeat\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"custom_css\":\"selector ul li{\\n    text-align: left;\\n    position: relative;\\n    left: 550px;\\n}\\nselector ul{\\n    overflow: hidden;\\n}\\nselector .aux-fs-popup:after{\\n    content: \'ARchitect\';\\n    font-family: \'poppins\';\\n    font-size: 290px;\\n    font-weight: 900;\\n    -webkit-text-stroke: 2px rgba(25, 25, 25, 0.12);\\n    -webkit-text-fill-color: transparent;\\n    text-transform: uppercase;\\n    text-align: center;\\n    display: inline-block;\\n    position: absolute;\\n    top:75%;\\n}\\nselector .aux-fs-popup .aux-panel-close{\\n    border: none;\\n}\\nselector .aux-menu-depth-0.current-menu-item .aux-item-content{\\n    color: #fff !important;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-fs-popup:after{\\n        font-size:190px;\\n        top:84%;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:768px){\\n    selector .aux-fs-popup:after{\\n        font-size:110px;\\n        top:90%;\\n    }\\n    selector ul li{\\n        left: 500px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector .aux-fs-popup:after{\\n        font-size:66px;\\n        top:92%;\\n    }\\n    selector ul li{\\n        left: 35px;\\n    }\\n    selector .aux-fs-popup{\\n        background-image:none;\\n    }\\n}\",\"__dynamic__\":[],\"fullscr_menu_item_typo_font_family\":\"Heebo\",\"fullscr_menu_item_typo_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"__globals__\":{\"fullscr_menu_item_typo_typography\":\"\",\"fullscr_bg_color\":\"globals\\/colors?id=secondary\",\"fullscr_close_btn_symbol_color\":\"globals\\/colors?id=primary\",\"fullscr_item_color\":\"globals\\/colors?id=primary\",\"fullscr_item_hover_color\":\"globals\\/colors?id=accent\",\"burger_btn_color\":\"globals\\/colors?id=primary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_menu_box\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1334,76,'_elementor_controls_usage','a:5:{s:8:\"aux_logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:22:\"aux_core_general_extra\";a:1:{s:9:\"flex_grow\";i:1;}s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:12:\"width_tablet\";i:1;s:12:\"width_mobile\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:9:\"title_tag\";i:1;s:7:\"divider\";i:1;}}s:5:\"style\";a:1:{s:19:\"title_style_section\";a:4:{s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:12:\"aux_menu_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:7:\"general\";a:2:{s:4:\"type\";i:1;s:9:\"indicator\";i:1;}s:19:\"mobile_menu_section\";a:1:{s:20:\"burger_menu_location\";i:1;}}s:5:\"style\";a:4:{s:17:\"menu_item_section\";a:3:{s:24:\"menu_item_typo_font_size\";i:1;s:26:\"menu_item_typo_font_weight\";i:1;s:29:\"menu_item_typo_text_transform\";i:1;}s:14:\"burger_section\";a:1:{s:16:\"burger_btn_style\";i:1;}s:15:\"fullscr_section\";a:8:{s:33:\"fullscr_menu_item_typo_typography\";i:1;s:32:\"fullscr_menu_item_typo_font_size\";i:1;s:39:\"fullscr_menu_item_typo_font_size_tablet\";i:1;s:34:\"fullscr_menu_item_typo_font_weight\";i:1;s:37:\"fullscr_menu_item_typo_text_transform\";i:1;s:20:\"fullscr_item_padding\";i:1;s:34:\"fullscr_menu_item_typo_font_family\";i:1;s:39:\"fullscr_menu_item_typo_font_size_mobile\";i:1;}s:14:\"fullscr_window\";a:4:{s:21:\"fullscr_bg_background\";i:1;s:16:\"fullscr_bg_image\";i:1;s:19:\"fullscr_bg_position\";i:1;s:17:\"fullscr_bg_repeat\";i:1;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}}'),(1336,76,'auxin_import_post','25'),(1337,5,'_elementor_data',''),(1338,2,'_elementor_data',''),(1339,3,'_elementor_data',''),(1340,56,'_elementor_data',''),(1341,57,'_elementor_data',''),(1342,58,'_elementor_data',''),(1343,59,'_elementor_data',''),(1344,60,'_elementor_data',''),(1345,61,'_elementor_data','[]'),(1352,77,'auxin-autop','no'),(1353,77,'_menu_item_type','post_type'),(1354,77,'_menu_item_menu_item_parent','0'),(1355,77,'_menu_item_object_id','74'),(1356,77,'_menu_item_object','page'),(1357,77,'_menu_item_target',''),(1358,77,'_menu_item_classes','a:1:{i:0;s:6:\"a1i0s0\";}'),(1359,77,'_menu_item_xfn',''),(1360,77,'_menu_item_url',''),(1361,77,'_menu_item_link_path',''),(1362,77,'_menu_item_aux_background_image',''),(1363,77,'_menu_item_custom_style',''),(1364,77,'_menu_item_sec_bg_color',''),(1365,77,'_menu_item_sec_text',''),(1366,77,'_menu_item_hide_mobile','0'),(1367,77,'_menu_item_hide_tablet','0'),(1368,77,'_menu_item_hide_desktop','0'),(1369,77,'_menu_item_col_num','1'),(1370,77,'_menu_item_hide_title','0'),(1371,77,'_menu_item_row_start','0'),(1372,77,'_menu_item_icon_align',''),(1373,77,'_menu_item_icon',''),(1374,77,'_menu_item_hide_label','0'),(1375,77,'_menu_item_nolink','0'),(1376,77,'_menu_item_megamenu','0'),(1377,78,'auxin-autop','no'),(1378,78,'_menu_item_type','post_type'),(1379,78,'_menu_item_menu_item_parent','0'),(1380,78,'_menu_item_object_id','73'),(1381,78,'_menu_item_object','page'),(1382,78,'_menu_item_target',''),(1383,78,'_menu_item_classes','a:1:{i:0;s:6:\"a1i0s0\";}'),(1384,78,'_menu_item_xfn',''),(1385,78,'_menu_item_url',''),(1386,78,'_menu_item_link_path',''),(1387,78,'_menu_item_aux_background_image',''),(1388,78,'_menu_item_custom_style',''),(1389,78,'_menu_item_sec_bg_color',''),(1390,78,'_menu_item_sec_text',''),(1391,78,'_menu_item_hide_mobile','0'),(1392,78,'_menu_item_hide_tablet','0'),(1393,78,'_menu_item_hide_desktop','0'),(1394,78,'_menu_item_col_num','1'),(1395,78,'_menu_item_hide_title','0'),(1396,78,'_menu_item_row_start','0'),(1397,78,'_menu_item_icon_align',''),(1398,78,'_menu_item_icon',''),(1399,78,'_menu_item_hide_label','0'),(1400,78,'_menu_item_nolink','0'),(1401,78,'_menu_item_megamenu','0'),(1402,79,'auxin-autop','no'),(1403,79,'_menu_item_type','post_type'),(1404,79,'_menu_item_menu_item_parent','0'),(1405,79,'_menu_item_object_id','72'),(1406,79,'_menu_item_object','page'),(1407,79,'_menu_item_target',''),(1408,79,'_menu_item_classes','a:1:{i:0;s:6:\"a1i0s0\";}'),(1409,79,'_menu_item_xfn',''),(1410,79,'_menu_item_url',''),(1411,79,'_menu_item_link_path',''),(1412,79,'_menu_item_aux_background_image',''),(1413,79,'_menu_item_custom_style',''),(1414,79,'_menu_item_sec_bg_color',''),(1415,79,'_menu_item_sec_text',''),(1416,79,'_menu_item_hide_mobile','0'),(1417,79,'_menu_item_hide_tablet','0'),(1418,79,'_menu_item_hide_desktop','0'),(1419,79,'_menu_item_col_num','1'),(1420,79,'_menu_item_hide_title','0'),(1421,79,'_menu_item_row_start','0'),(1422,79,'_menu_item_icon_align',''),(1423,79,'_menu_item_icon',''),(1424,79,'_menu_item_hide_label','0'),(1425,79,'_menu_item_nolink','0'),(1426,79,'_menu_item_megamenu','0'),(1427,80,'auxin-autop','no'),(1428,80,'_menu_item_type','post_type'),(1429,80,'_menu_item_menu_item_parent','0'),(1430,80,'_menu_item_object_id','71'),(1431,80,'_menu_item_object','page'),(1432,80,'_menu_item_target',''),(1433,80,'_menu_item_classes','a:1:{i:0;s:6:\"a1i0s0\";}'),(1434,80,'_menu_item_xfn',''),(1435,80,'_menu_item_url',''),(1436,80,'_menu_item_link_path',''),(1437,80,'_menu_item_aux_background_image',''),(1438,80,'_menu_item_custom_style',''),(1439,80,'_menu_item_sec_bg_color',''),(1440,80,'_menu_item_sec_text',''),(1441,80,'_menu_item_hide_mobile','0'),(1442,80,'_menu_item_hide_tablet','0'),(1443,80,'_menu_item_hide_desktop','0'),(1444,80,'_menu_item_col_num','1'),(1445,80,'_menu_item_hide_title','0'),(1446,80,'_menu_item_row_start','0'),(1447,80,'_menu_item_icon_align',''),(1448,80,'_menu_item_icon',''),(1449,80,'_menu_item_hide_label','0'),(1450,80,'_menu_item_nolink','0'),(1451,80,'_menu_item_megamenu','0'),(1452,81,'auxin-autop','no'),(1453,81,'_menu_item_type','post_type'),(1454,81,'_menu_item_menu_item_parent','0'),(1455,81,'_menu_item_object_id','70'),(1456,81,'_menu_item_object','page'),(1457,81,'_menu_item_target',''),(1458,81,'_menu_item_classes','a:1:{i:0;s:6:\"a1i0s0\";}'),(1459,81,'_menu_item_xfn',''),(1460,81,'_menu_item_url',''),(1461,81,'_menu_item_link_path',''),(1462,81,'_menu_item_aux_background_image',''),(1463,81,'_menu_item_custom_style',''),(1464,81,'_menu_item_sec_bg_color',''),(1465,81,'_menu_item_sec_text',''),(1466,81,'_menu_item_hide_mobile','0'),(1467,81,'_menu_item_hide_tablet','0'),(1468,81,'_menu_item_hide_desktop','0'),(1469,81,'_menu_item_col_num','1'),(1470,81,'_menu_item_hide_title','0'),(1471,81,'_menu_item_row_start','0'),(1472,81,'_menu_item_icon_align',''),(1473,81,'_menu_item_icon',''),(1474,81,'_menu_item_hide_label','0'),(1475,81,'_menu_item_nolink','0'),(1476,81,'_menu_item_megamenu','0'),(1484,74,'_edit_lock','1647575274:1'),(1486,82,'_elementor_edit_mode','builder'),(1487,82,'_elementor_template_type','page'),(1488,82,'auxin-autop','no'),(1489,82,'_elementor_version','3.5.6'),(1490,82,'_elementor_data','[{\"id\":\"6fc00980\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"629f014d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"19c47075\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"496ca7cd\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"39305367\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6de5f1fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"32067484\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57085123\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"Architecture\",\"title_secondary_highlight\":\" and Decor\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5bae9077\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2bf125e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"4f09f29c\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"6bbab4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7928d93f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"177a34a2\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"779b39a0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"213b9913\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"2f7561e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of art\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"242631ff\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"250cdb2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"3c24159f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"1bd3661\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75c9bc64\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"58ed86d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"5992ce22\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"58530436\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_width\":{\"unit\":\"px\",\"size\":\"1920\",\"sizes\":[]}},\"elements\":[{\"id\":\"67ed0d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"40\",\"align\":\"flex-start\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"180e772d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sunyu-kim-q1rwmAmRSBM-unsplash.png\",\"id\":\"44\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"320ed1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        margin: 0 10%;\\n    }\\n}\"},\"elements\":[{\"id\":\"1621ec52\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Let Your Home Be Unique\",\"title_secondary_after\":\"Stylish.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"466\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"738\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"31039669\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"43136c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4150d221\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>01<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Client Needs\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"4f6b9d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6b9a79f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>02<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Planning Design\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"5be41515\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4f2ad406\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>03<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Architect Sketch\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":900,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"347865cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"2579749f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"43dd4cc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"5bd52ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"2db35460\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3d7846\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c5192e2\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7ad2e71f\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"5d3f8285\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3374a81a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"70ab8b24\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"19d844f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1b6db3c0\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"63ea4f11\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"47409ea9\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"21ceb096\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7f1c53f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"287a9e25\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6ddf8eb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"75c0bff2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"4ae29b45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"d9990fd\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"1fdd8e07\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"465f21ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"229b085f\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3a326dd6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"7eea1426\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"4ecd8c08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"416f1730\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2a205de1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"34495f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"47629066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"5a6afd64\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1e6c2313\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"1627de72\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"6e9f80bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4fab43d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"639a9779\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2cf332a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"796f7a32\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2d2b5a83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"1a519220\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6ee434d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"2f1a9a63\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"761be631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"430d54f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2df60ba8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"64431da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3f8ff3d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"71edd69c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4ba806ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1491,83,'_elementor_edit_mode','builder'),(1492,83,'_elementor_template_type','page'),(1493,83,'_elementor_version','3.5.6'),(1494,83,'_elementor_data','[{\"id\":\"6fc00980\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"629f014d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"19c47075\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"496ca7cd\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"39305367\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6de5f1fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"32067484\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"57085123\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"Architecture\",\"title_secondary_highlight\":\" and Decor\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5bae9077\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2bf125e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"4f09f29c\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"6bbab4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7928d93f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"177a34a2\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"779b39a0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"213b9913\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"2f7561e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of art\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"242631ff\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"250cdb2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"3c24159f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"1bd3661\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75c9bc64\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"58ed86d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"5992ce22\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"58530436\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_width\":{\"unit\":\"px\",\"size\":\"1920\",\"sizes\":[]}},\"elements\":[{\"id\":\"67ed0d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"40\",\"align\":\"flex-start\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"180e772d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sunyu-kim-q1rwmAmRSBM-unsplash.png\",\"id\":\"44\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"320ed1c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        margin: 0 10%;\\n    }\\n}\"},\"elements\":[{\"id\":\"1621ec52\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Let Your Home Be Unique\",\"title_secondary_after\":\"Stylish.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"466\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"738\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"31039669\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"43136c28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4150d221\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>01<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Client Needs\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"4f6b9d9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6b9a79f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>02<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Planning Design\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"5be41515\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4f2ad406\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>03<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Architect Sketch\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":900,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"347865cf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"2579749f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"43dd4cc9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"5bd52ad5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"2db35460\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3d7846\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c5192e2\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7ad2e71f\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"5d3f8285\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3374a81a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"70ab8b24\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"19d844f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1b6db3c0\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"63ea4f11\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"47409ea9\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"21ceb096\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7f1c53f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"287a9e25\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6ddf8eb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"75c0bff2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"4ae29b45\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"d9990fd\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"1fdd8e07\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"465f21ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"229b085f\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3a326dd6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"7eea1426\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"4ecd8c08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"416f1730\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"2a205de1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"34495f16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"47629066\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"5a6afd64\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1e6c2313\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"1627de72\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"6e9f80bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4fab43d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"639a9779\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2cf332a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"796f7a32\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2d2b5a83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"1a519220\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6ee434d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"2f1a9a63\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"761be631\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"430d54f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2df60ba8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"64431da2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3f8ff3d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"71edd69c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4ba806ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1495,82,'_elementor_page_assets','a:0:{}'),(1496,84,'_wp_page_template','templates/page-builder-content.php'),(1497,84,'_elementor_edit_mode','builder'),(1498,84,'_elementor_template_type','wp-page'),(1499,84,'_elementor_version','3.0.15'),(1500,84,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"Architecture\",\"title_secondary_highlight\":\" and Decor\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of art\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c6187a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_width\":{\"unit\":\"px\",\"size\":\"1920\",\"sizes\":[]}},\"elements\":[{\"id\":\"23fc067\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"40\",\"align\":\"flex-start\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"f1dfdb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sunyu-kim-q1rwmAmRSBM-unsplash.png\",\"id\":\"44\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"90e2487\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        margin: 0 10%;\\n    }\\n}\"},\"elements\":[{\"id\":\"a5729c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Let Your Home Be Unique\",\"title_secondary_after\":\"Stylish.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"466\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"738\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9948f52\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"49dda04\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"25c792c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>01<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Client Needs\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"e626964\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ac0567d\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>02<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Planning Design\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"7ae1790\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"85985a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>03<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Architect Sketch\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":900,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1501,84,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1503,85,'_wp_page_template','templates/page-builder-content.php'),(1504,85,'_elementor_edit_mode','builder'),(1505,85,'_elementor_template_type','wp-page'),(1506,85,'_elementor_version','3.0.15'),(1507,85,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"Architecture\",\"title_secondary_highlight\":\" and Decor\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of art\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c6187a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_width\":{\"unit\":\"px\",\"size\":\"1920\",\"sizes\":[]}},\"elements\":[{\"id\":\"23fc067\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"40\",\"align\":\"flex-start\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"f1dfdb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sunyu-kim-q1rwmAmRSBM-unsplash.png\",\"id\":\"44\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"90e2487\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        margin: 0 10%;\\n    }\\n}\"},\"elements\":[{\"id\":\"a5729c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Let Your Home Be Unique\",\"title_secondary_after\":\"Stylish.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"466\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"738\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9948f52\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"49dda04\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"25c792c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>01<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Client Needs\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"e626964\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ac0567d\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>02<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Planning Design\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"7ae1790\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"85985a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>03<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Architect Sketch\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":900,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1508,85,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1510,86,'_wp_page_template','templates/page-builder-content.php'),(1511,86,'_elementor_edit_mode','builder'),(1512,86,'_elementor_template_type','wp-page'),(1513,86,'_elementor_version','3.0.15');
INSERT INTO `wp_postmeta` VALUES (1514,86,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of art\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c6187a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_width\":{\"unit\":\"px\",\"size\":\"1920\",\"sizes\":[]}},\"elements\":[{\"id\":\"23fc067\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"40\",\"align\":\"flex-start\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"f1dfdb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sunyu-kim-q1rwmAmRSBM-unsplash.png\",\"id\":\"44\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"90e2487\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        margin: 0 10%;\\n    }\\n}\"},\"elements\":[{\"id\":\"a5729c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Let Your Home Be Unique\",\"title_secondary_after\":\"Stylish.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"466\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"738\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9948f52\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"49dda04\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"25c792c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>01<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Client Needs\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"e626964\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ac0567d\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>02<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Planning Design\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"7ae1790\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"85985a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>03<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Architect Sketch\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":900,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1515,86,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1517,74,'_elementor_page_assets','a:0:{}'),(1518,87,'_wp_page_template','templates/page-builder-content.php'),(1519,87,'_elementor_edit_mode','builder'),(1520,87,'_elementor_template_type','wp-page'),(1521,87,'_elementor_version','3.5.6'),(1522,87,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of art\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c6187a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_width\":{\"unit\":\"px\",\"size\":\"1920\",\"sizes\":[]}},\"elements\":[{\"id\":\"23fc067\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"40\",\"align\":\"flex-start\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"f1dfdb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sunyu-kim-q1rwmAmRSBM-unsplash.png\",\"id\":\"44\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"90e2487\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        margin: 0 10%;\\n    }\\n}\"},\"elements\":[{\"id\":\"a5729c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Let Your Home Be Unique\",\"title_secondary_after\":\"Stylish.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"466\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"738\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9948f52\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"49dda04\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"25c792c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>01<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Client Needs\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"e626964\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ac0567d\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>02<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Planning Design\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"7ae1790\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"85985a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>03<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Architect Sketch\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":900,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1523,87,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1524,87,'_elementor_page_assets','a:0:{}'),(1525,88,'_wp_page_template','templates/page-builder-content.php'),(1526,88,'_elementor_edit_mode','builder'),(1527,88,'_elementor_template_type','wp-page'),(1528,88,'_elementor_version','3.5.6'),(1529,88,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of art\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c6187a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_width\":{\"unit\":\"px\",\"size\":\"1920\",\"sizes\":[]}},\"elements\":[{\"id\":\"23fc067\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"40\",\"align\":\"flex-start\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"f1dfdb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sunyu-kim-q1rwmAmRSBM-unsplash.png\",\"id\":\"44\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"90e2487\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        margin: 0 10%;\\n    }\\n}\"},\"elements\":[{\"id\":\"a5729c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Let Your Home Be Unique\",\"title_secondary_after\":\"Stylish.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"466\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"738\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9948f52\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"49dda04\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"25c792c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>01<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Client Needs\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"e626964\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ac0567d\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>02<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Planning Design\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"7ae1790\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"85985a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>03<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Architect Sketch\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":900,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1530,88,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1531,88,'_elementor_page_assets','a:0:{}'),(1532,89,'_wp_page_template','templates/page-builder-content.php'),(1533,89,'_elementor_edit_mode','builder'),(1534,89,'_elementor_template_type','wp-page'),(1535,89,'_elementor_version','3.5.6'),(1536,89,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c6187a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_width\":{\"unit\":\"px\",\"size\":\"1920\",\"sizes\":[]}},\"elements\":[{\"id\":\"23fc067\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"40\",\"align\":\"flex-start\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"f1dfdb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sunyu-kim-q1rwmAmRSBM-unsplash.png\",\"id\":\"44\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"90e2487\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        margin: 0 10%;\\n    }\\n}\"},\"elements\":[{\"id\":\"a5729c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Let Your Home Be Unique\",\"title_secondary_after\":\"Stylish.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"466\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"738\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9948f52\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"49dda04\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"25c792c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>01<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Client Needs\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"e626964\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ac0567d\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>02<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Planning Design\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"7ae1790\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"85985a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>03<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Architect Sketch\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":900,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1537,89,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1538,89,'_elementor_page_assets','a:0:{}'),(1539,71,'_edit_lock','1647493812:1'),(1540,90,'_elementor_edit_mode','builder'),(1541,90,'_elementor_template_type','page'),(1542,90,'auxin-autop','no'),(1543,90,'_elementor_version','3.5.6'),(1544,91,'_elementor_edit_mode','builder'),(1545,91,'_elementor_template_type','page'),(1546,91,'_elementor_version','3.5.6'),(1547,90,'_wp_page_template','default'),(1548,90,'_elementor_data','[{\"id\":\"3c3ca9c3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"70b4b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"5269fe43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6b5cf0ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7928de0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"78c3ba03\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"1bd020e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"4cf22ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1a8201cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2a3e6031\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design Project\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"1a4c0be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"eeb152d\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"7f41b7f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office design\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5265bae9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2d64b10b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"77d734da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"7e2a6d2c\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6035877c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2c675dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40c628d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"27f5b3fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c43ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c4a5881\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"79bd811f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3e3b0054\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1e1e9237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"55c2519c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"bb198d2\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3f0fd1e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"71a9c461\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"69fb9af3\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"1ce526ff\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4833a9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"257c7e8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"7ccd095a\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in architect\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"14e7ea97\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5109389c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"2e7d079a\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"4d60f61b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"29987326\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"69f4eace\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"198abd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"760b5b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1549,92,'_elementor_edit_mode','builder'),(1550,92,'_elementor_template_type','page'),(1551,92,'_elementor_version','3.5.6'),(1552,92,'_wp_page_template','default'),(1553,92,'_elementor_data','[{\"id\":\"3c3ca9c3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"70b4b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"5269fe43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6b5cf0ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7928de0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"78c3ba03\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"1bd020e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"4cf22ac6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1a8201cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2a3e6031\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design Project\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"1a4c0be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"eeb152d\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"7f41b7f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office design\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5265bae9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2d64b10b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"77d734da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"7e2a6d2c\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6035877c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2c675dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40c628d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"27f5b3fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c43ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c4a5881\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"79bd811f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3e3b0054\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1e1e9237\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"55c2519c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"bb198d2\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3f0fd1e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"71a9c461\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"69fb9af3\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"1ce526ff\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"4833a9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"257c7e8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"7ccd095a\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in architect\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"14e7ea97\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5109389c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"2e7d079a\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"4d60f61b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"29987326\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"69f4eace\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"198abd13\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"760b5b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1554,90,'_elementor_page_assets','a:0:{}'),(1562,94,'_wp_page_template','templates/page-builder-content.php'),(1563,94,'_elementor_edit_mode','builder'),(1564,94,'_elementor_template_type','wp-page'),(1565,94,'_elementor_version','3.5.6'),(1566,94,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c6187a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_width\":{\"unit\":\"px\",\"size\":\"1920\",\"sizes\":[]}},\"elements\":[{\"id\":\"23fc067\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"40\",\"align\":\"flex-start\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"f1dfdb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sunyu-kim-q1rwmAmRSBM-unsplash.png\",\"id\":\"44\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"90e2487\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        margin: 0 10%;\\n    }\\n}\"},\"elements\":[{\"id\":\"a5729c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Let Your Home Be Unique\",\"title_secondary_after\":\"Stylish.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"466\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"738\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9948f52\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"49dda04\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"25c792c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>01<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Client Needs\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"e626964\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ac0567d\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>02<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Planning Design\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"7ae1790\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"85985a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>03<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Architect Sketch\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":900,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1567,94,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1568,94,'_elementor_page_assets','a:0:{}'),(1569,95,'_wp_page_template','templates/page-builder-content.php'),(1570,95,'_elementor_edit_mode','builder'),(1571,95,'_elementor_template_type','wp-page'),(1572,95,'_elementor_version','3.5.6'),(1573,95,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c6187a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_width\":{\"unit\":\"px\",\"size\":\"1920\",\"sizes\":[]}},\"elements\":[{\"id\":\"23fc067\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"40\",\"align\":\"flex-start\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"f1dfdb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sunyu-kim-q1rwmAmRSBM-unsplash.png\",\"id\":\"44\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"90e2487\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        margin: 0 10%;\\n    }\\n}\"},\"elements\":[{\"id\":\"a5729c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Let Your Home Be Unique\",\"title_secondary_after\":\"Stylish.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"466\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"738\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9948f52\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"49dda04\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"25c792c\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>01<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Client Needs\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"e626964\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ac0567d\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>02<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Planning Design\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"7ae1790\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"85985a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>03<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Architect Sketch\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":900,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1574,95,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1575,95,'_elementor_page_assets','a:0:{}'),(1576,96,'_wp_page_template','default'),(1577,96,'_elementor_edit_mode','builder'),(1578,96,'_elementor_template_type','wp-page'),(1579,96,'_elementor_version','3.5.6');
INSERT INTO `wp_postmeta` VALUES (1580,96,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1581,96,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1582,96,'_elementor_page_assets','a:0:{}'),(1583,97,'_wp_page_template','default'),(1584,97,'_elementor_edit_mode','builder'),(1585,97,'_elementor_template_type','wp-page'),(1586,97,'_elementor_version','3.5.6'),(1587,97,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1588,97,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1589,97,'_elementor_page_assets','a:0:{}'),(1590,98,'_wp_page_template','default'),(1591,98,'_elementor_edit_mode','builder'),(1592,98,'_elementor_template_type','wp-page'),(1593,98,'_elementor_version','3.5.6'),(1594,98,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1595,98,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1596,98,'_elementor_page_assets','a:0:{}'),(1597,99,'_wp_page_template','default'),(1598,99,'_elementor_edit_mode','builder'),(1599,99,'_elementor_template_type','wp-page'),(1600,99,'_elementor_version','3.5.6'),(1601,99,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1602,99,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1603,99,'_elementor_page_assets','a:0:{}'),(1604,100,'_wp_page_template','default'),(1605,100,'_elementor_edit_mode','builder'),(1606,100,'_elementor_template_type','wp-page'),(1607,100,'_elementor_version','3.5.6'),(1608,100,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1609,100,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1610,100,'_elementor_page_assets','a:0:{}'),(1611,101,'_wp_page_template','default'),(1612,101,'_elementor_edit_mode','builder'),(1613,101,'_elementor_template_type','wp-page'),(1614,101,'_elementor_version','3.5.6'),(1615,101,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1616,101,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1617,101,'_elementor_page_assets','a:0:{}'),(1618,102,'_wp_page_template','default'),(1619,102,'_elementor_edit_mode','builder'),(1620,102,'_elementor_template_type','wp-page'),(1621,102,'_elementor_version','3.5.6'),(1622,102,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"2\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_title\":\"\",\"show_info\":\"\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"107cde7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea77a7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6529a2\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"num\":6},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1623,102,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1624,102,'_elementor_page_assets','a:0:{}'),(1626,103,'_wp_page_template','default'),(1627,103,'_elementor_edit_mode','builder'),(1628,103,'_elementor_template_type','wp-page'),(1629,103,'_elementor_version','3.5.6');
INSERT INTO `wp_postmeta` VALUES (1630,103,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"2\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_title\":\"\",\"show_info\":\"\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"107cde7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea77a7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6529a2\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"num\":6},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1631,103,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1632,103,'_elementor_page_assets','a:0:{}'),(1634,104,'_wp_page_template','default'),(1635,104,'_elementor_edit_mode','builder'),(1636,104,'_elementor_template_type','wp-page'),(1637,104,'_elementor_version','3.5.6'),(1638,104,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"2\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_title\":\"\",\"show_info\":\"\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"107cde7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea77a7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6529a2\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"num\":6},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1639,104,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1640,104,'_elementor_page_assets','a:0:{}'),(1642,105,'_wp_page_template','default'),(1643,105,'_elementor_edit_mode','builder'),(1644,105,'_elementor_template_type','wp-page'),(1645,105,'_elementor_version','3.5.6'),(1646,105,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"107cde7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea77a7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6529a2\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"num\":6},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1647,105,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1648,105,'_elementor_page_assets','a:0:{}'),(1650,106,'_wp_page_template','default'),(1651,106,'_elementor_edit_mode','builder'),(1652,106,'_elementor_template_type','wp-page'),(1653,106,'_elementor_version','3.5.6'),(1654,106,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"107cde7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea77a7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6529a2\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"num\":6},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1655,106,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1656,106,'_elementor_page_assets','a:0:{}'),(1657,107,'_wp_page_template','default'),(1658,107,'_elementor_edit_mode','builder'),(1659,107,'_elementor_template_type','wp-page'),(1660,107,'_elementor_version','3.5.6'),(1661,107,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"107cde7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea77a7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6529a2\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"num\":6},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1662,107,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1663,107,'_elementor_page_assets','a:0:{}'),(1671,109,'_wp_page_template','templates/page-builder-content.php'),(1672,109,'_elementor_edit_mode','builder'),(1673,109,'_elementor_template_type','wp-page'),(1674,109,'_elementor_version','3.0.15'),(1675,109,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design Project\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office design\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in architect\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1676,109,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(1677,110,'_wp_page_template','templates/page-builder-content.php'),(1678,110,'_elementor_edit_mode','builder'),(1679,110,'_elementor_template_type','wp-page'),(1680,110,'_elementor_version','3.0.15'),(1681,110,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design Project\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office design\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in architect\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1682,110,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(1683,111,'_wp_page_template','templates/page-builder-content.php'),(1684,111,'_elementor_edit_mode','builder'),(1685,111,'_elementor_template_type','wp-page'),(1686,111,'_elementor_version','3.0.15'),(1687,111,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design Project\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office design\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in architect\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f918cd0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f5f3910\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ddd9631\",\"elType\":\"widget\",\"settings\":{\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca39c6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"85b9fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4937a4\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"cat\":[\"7\"],\"filter_style\":\"aux-fill\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1688,111,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(1689,71,'_elementor_page_assets','a:0:{}'),(1690,112,'auxin-autop','no'),(1691,112,'_elementor_template_type','section'),(1692,112,'_elementor_edit_mode','builder'),(1693,112,'_elementor_data','a:1:{i:0;a:5:{s:2:\"id\";s:8:\"151d7f58\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:34:{s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:300;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1920;s:5:\"sizes\";a:0:{}}s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:50;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";i:0;s:6:\"bottom\";s:0:\"\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:6:\"layout\";s:10:\"full_width\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"section_parallax_elements\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"inner_container_backgound_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:38:\"inner_container_backgound_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:38:\"inner_container_backgound_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:40:\"inner_container_backgound_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_pseudo_before_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_pseudo_before_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_pseudo_after_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:38:\"background_pseudo_after_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"6dd2d016\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:28:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_pseudo_before_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_pseudo_before_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_pseudo_after_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:38:\"background_pseudo_after_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:8:\"5f60053b\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:32:{s:9:\"structure\";i:20;s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";i:0;s:6:\"bottom\";s:0:\"\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";i:0;s:6:\"bottom\";s:0:\"\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"section_parallax_elements\";a:0:{}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"inner_container_backgound_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:38:\"inner_container_backgound_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:38:\"inner_container_backgound_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:40:\"inner_container_backgound_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_pseudo_before_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_pseudo_before_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_pseudo_after_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:38:\"background_pseudo_after_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:8:\"5577b8c8\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:27:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";d:83.114000000000004320099833421409130096435546875;s:19:\"_inline_size_tablet\";i:70;s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_pseudo_before_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_pseudo_before_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_pseudo_after_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:38:\"background_pseudo_after_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"4a585b6c\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:188:{s:5:\"title\";s:19:\"Portfolio Gallery .\";s:11:\"title_color\";s:7:\"#0c0c0c\";s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:45;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";i:700;s:28:\"title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:35:\"title_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:35:\"title_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:31:\"title_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:-3;s:5:\"sizes\";a:0:{}}s:38:\"title_typography_letter_spacing_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:38:\"title_typography_letter_spacing_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:12:\"title_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:25;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:11:\"title_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:18:\"title_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:18:\"title_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:27:\"title2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:34:\"title2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:34:\"title2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:29:\"title2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:36:\"title2_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:36:\"title2_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:32:\"title2_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:39:\"title2_typography_letter_spacing_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:39:\"title2_typography_letter_spacing_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:12:\"title2_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:19:\"title2_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:19:\"title2_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:39:\"title2_highlighted_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:46:\"title2_highlighted_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:46:\"title2_highlighted_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:41:\"title2_highlighted_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:48:\"title2_highlighted_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:48:\"title2_highlighted_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:44:\"title2_highlighted_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:51:\"title2_highlighted_typography_letter_spacing_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:51:\"title2_highlighted_typography_letter_spacing_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:14:\"divider_weight\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:21:\"divider_weight_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"divider_weight_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"divider_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:53;s:5:\"sizes\";a:0:{}}s:20:\"divider_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"divider_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"divider_color\";s:7:\"#0c0c0c\";s:33:\"divider_backgoundcolor_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"divider_backgoundcolor_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:37:\"divider_backgoundcolor_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:27:\"divider_backgoundcolor_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:34:\"divider_backgoundcolor_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:34:\"divider_backgoundcolor_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:27:\"divider_backgoundcolor_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:34:\"divider_backgoundcolor_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:34:\"divider_backgoundcolor_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:31:\"divider_backgoundcolor_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:38:\"divider_backgoundcolor_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:38:\"divider_backgoundcolor_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:32:\"description_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:39:\"description_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:39:\"description_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:34:\"description_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:41:\"description_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:41:\"description_typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:37:\"description_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:44:\"description_typography_letter_spacing_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:44:\"description_typography_letter_spacing_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:17:\"description_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"description_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"description_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:5:\"width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:12:\"width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:12:\"width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:6:\"height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:22:\"_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"_background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"_background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:16:\"_background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:16:\"_background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:20:\"_background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:27:\"_background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:27:\"_background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"_background_hover_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:30:\"_background_hover_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:32:\"_background_hover_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:22:\"_background_hover_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"_background_hover_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"_background_hover_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"_background_hover_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"_background_hover_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"_background_hover_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:26:\"_background_hover_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:33:\"_background_hover_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"_background_hover_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"_background_hover_transition\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"_border_hover_transition\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"_element_custom_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"_element_custom_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"_element_custom_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:9:\"_offset_x\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:16:\"_offset_x_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:16:\"_offset_x_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"_offset_x_end\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:20:\"_offset_x_end_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"_offset_x_end_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:9:\"_offset_y\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:16:\"_offset_y_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:16:\"_offset_y_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"_offset_y_end\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:20:\"_offset_y_end_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"_offset_y_end_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:16:\"aux_position_top\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"aux_position_top_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"aux_position_top_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:18:\"aux_position_right\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:25:\"aux_position_right_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:25:\"aux_position_right_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:19:\"aux_position_bottom\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"aux_position_bottom_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"aux_position_bottom_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:17:\"aux_position_left\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"aux_position_left_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"aux_position_left_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"aux_position_from_center\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:31:\"aux_position_from_center_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:31:\"aux_position_from_center_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"aux_max_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"aux_max_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"aux_max_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:14:\"aux_max_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"aux_max_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"aux_max_height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"aux_min_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"aux_min_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"aux_min_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:14:\"aux_min_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"aux_min_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"aux_min_height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_before_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:37:\"background_pseudo_before_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:39:\"background_pseudo_before_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:29:\"background_pseudo_before_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_before_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_before_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"background_pseudo_before_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_before_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_before_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:33:\"background_pseudo_before_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:40:\"background_pseudo_before_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:40:\"background_pseudo_before_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:34:\"background_pseudo_after_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_after_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:38:\"background_pseudo_after_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:28:\"background_pseudo_after_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_after_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_after_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:28:\"background_pseudo_after_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_after_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_after_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:32:\"background_pseudo_after_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:39:\"background_pseudo_after_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:39:\"background_pseudo_after_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"divider_backgoundcolor_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"divider_backgoundcolor_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"divider_backgoundcolor_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"divider_backgoundcolor_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_pseudo_before_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_pseudo_before_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_pseudo_after_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:38:\"background_pseudo_after_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:18:\"aux_modern_heading\";}}s:7:\"isInner\";b:1;}i:1;a:5:{s:2:\"id\";s:8:\"515ded8e\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:142:{s:12:\"_column_size\";i:50;s:12:\"_inline_size\";d:16.885999999999999232613845379091799259185791015625;s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:27:\"background_hover_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"background_hover_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:31:\"background_hover_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:21:\"background_hover_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:28:\"background_hover_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:28:\"background_hover_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:21:\"background_hover_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:28:\"background_hover_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:28:\"background_hover_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:25:\"background_hover_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:32:\"background_hover_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:32:\"background_hover_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:27:\"background_hover_transition\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"sizes\";a:0:{}}s:29:\"background_overlay_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:31:\"background_overlay_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:33:\"background_overlay_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:23:\"background_overlay_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:30:\"background_overlay_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:30:\"background_overlay_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_overlay_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:30:\"background_overlay_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:30:\"background_overlay_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:27:\"background_overlay_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:34:\"background_overlay_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:34:\"background_overlay_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_overlay_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.5;s:5:\"sizes\";a:0:{}}s:16:\"css_filters_blur\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"css_filters_brightness\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:20:\"css_filters_contrast\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:20:\"css_filters_saturate\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:15:\"css_filters_hue\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_overlay_hover_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:37:\"background_overlay_hover_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:39:\"background_overlay_hover_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:29:\"background_overlay_hover_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_overlay_hover_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_overlay_hover_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"background_overlay_hover_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_overlay_hover_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_overlay_hover_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:33:\"background_overlay_hover_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:40:\"background_overlay_hover_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:40:\"background_overlay_hover_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:32:\"background_overlay_hover_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.5;s:5:\"sizes\";a:0:{}}s:22:\"css_filters_hover_blur\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:28:\"css_filters_hover_brightness\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"css_filters_hover_contrast\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"css_filters_hover_saturate\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:21:\"css_filters_hover_hue\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_overlay_hover_transition\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"sizes\";a:0:{}}s:23:\"border_hover_transition\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.299999999999999988897769753748434595763683319091796875;s:5:\"sizes\";a:0:{}}s:16:\"aux_position_top\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"aux_position_top_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"aux_position_top_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:18:\"aux_position_right\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:25:\"aux_position_right_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:25:\"aux_position_right_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:19:\"aux_position_bottom\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"aux_position_bottom_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"aux_position_bottom_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:17:\"aux_position_left\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"aux_position_left_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"aux_position_left_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"aux_position_from_center\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:31:\"aux_position_from_center_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:31:\"aux_position_from_center_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"aux_max_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"aux_max_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"aux_max_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:14:\"aux_max_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"aux_max_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"aux_max_height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"aux_min_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"aux_min_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"aux_min_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:14:\"aux_min_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"aux_min_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"aux_min_height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_before_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:37:\"background_pseudo_before_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:39:\"background_pseudo_before_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:29:\"background_pseudo_before_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_before_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_before_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"background_pseudo_before_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_before_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_before_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:33:\"background_pseudo_before_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:40:\"background_pseudo_before_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:40:\"background_pseudo_before_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:34:\"background_pseudo_after_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_after_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:38:\"background_pseudo_after_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:28:\"background_pseudo_after_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_after_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_after_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:28:\"background_pseudo_after_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_after_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_after_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:32:\"background_pseudo_after_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:39:\"background_pseudo_after_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:39:\"background_pseudo_after_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:19:\"_inline_size_tablet\";i:30;s:5:\"align\";s:8:\"flex-end\";s:16:\"background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:25:\"background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:22:\"background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"background_overlay_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"background_overlay_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"background_overlay_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_overlay_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_overlay_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_overlay_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_pseudo_before_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_pseudo_before_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_pseudo_after_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:38:\"background_pseudo_after_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"4d2de1e1\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:136:{s:4:\"text\";s:8:\"View All\";s:4:\"size\";s:2:\"lg\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:15;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";i:500;s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.399999999999999911182158029987476766109466552734375;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:-0.8000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:16:\"background_color\";s:7:\"#0c0c0c\";s:13:\"border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:12:\"text_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:20;s:5:\"right\";i:87;s:6:\"bottom\";i:20;s:4:\"left\";i:28;s:8:\"isLinked\";b:0;}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:10:\"custom_css\";s:504:\"/* btn line */\n\nselector .elementor-button-wrapper a {\n    width: 195px;\n    text-align: left;\n}\n\nselector .elementor-button-content-wrapper {\n    position: relative;\n}\n\nselector .elementor-button-content-wrapper::after {\n    content: \"\";\n    height: 1px;\n    display: inline-block;\n    background-color: #FFF;\n    position: absolute;\n    top: 10px;\n    margin-left: 29px;\n    width: 32px;\n    transition: width 0.6s ease;\n}\n\nselector:hover .elementor-button-content-wrapper::after {\n    width: 68px;\n}\n\n\";s:11:\"icon_indent\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:29:\"typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:29:\"typography_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:32:\"typography_letter_spacing_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:32:\"typography_letter_spacing_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:22:\"_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"_background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"_background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:16:\"_background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:16:\"_background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:20:\"_background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:27:\"_background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:27:\"_background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"_background_hover_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:30:\"_background_hover_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:32:\"_background_hover_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:22:\"_background_hover_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"_background_hover_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"_background_hover_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"_background_hover_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"_background_hover_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"_background_hover_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:26:\"_background_hover_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:33:\"_background_hover_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"_background_hover_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"_background_hover_transition\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"_border_hover_transition\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:14:\"_element_width\";s:4:\"auto\";s:21:\"_element_custom_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"_element_custom_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"_element_custom_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:9:\"_offset_x\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:16:\"_offset_x_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:16:\"_offset_x_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"_offset_x_end\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:20:\"_offset_x_end_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"_offset_x_end_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:9:\"_offset_y\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:16:\"_offset_y_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:16:\"_offset_y_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"_offset_y_end\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:20:\"_offset_y_end_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"_offset_y_end_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:16:\"aux_position_top\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"aux_position_top_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"aux_position_top_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:18:\"aux_position_right\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:25:\"aux_position_right_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:25:\"aux_position_right_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:19:\"aux_position_bottom\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"aux_position_bottom_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"aux_position_bottom_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:17:\"aux_position_left\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"aux_position_left_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"aux_position_left_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"aux_position_from_center\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:31:\"aux_position_from_center_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:31:\"aux_position_from_center_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"aux_parallax_el_depth\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.1499999999999999944488848768742172978818416595458984375;s:5:\"sizes\";a:0:{}}s:26:\"aux_parallax_disable_under\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:768;s:5:\"sizes\";a:0:{}}s:17:\"aux_sticky_margin\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"aux_sticky_disable_under\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:767;s:5:\"sizes\";a:0:{}}s:13:\"aux_max_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"aux_max_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"aux_max_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:14:\"aux_max_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"aux_max_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"aux_max_height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"aux_min_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"aux_min_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"aux_min_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:14:\"aux_min_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"aux_min_height_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"aux_min_height_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_before_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:37:\"background_pseudo_before_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:39:\"background_pseudo_before_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:29:\"background_pseudo_before_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_before_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_before_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"background_pseudo_before_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_before_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_before_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:33:\"background_pseudo_before_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:40:\"background_pseudo_before_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:40:\"background_pseudo_before_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:34:\"background_pseudo_after_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:36:\"background_pseudo_after_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:38:\"background_pseudo_after_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:28:\"background_pseudo_after_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_after_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_after_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:28:\"background_pseudo_after_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_after_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:35:\"background_pseudo_after_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:32:\"background_pseudo_after_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:39:\"background_pseudo_after_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:39:\"background_pseudo_after_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"_widget_parallax_x_value\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:24:\"_widget_parallax_y_value\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:31:\"_widget_parallax_viewport_value\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.200000000000000011102230246251565404236316680908203125;s:5:\"sizes\";a:0:{}}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_pseudo_before_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_pseudo_before_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_pseudo_after_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:38:\"background_pseudo_after_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:6:\"button\";}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:1;}i:1;a:5:{s:2:\"id\";s:8:\"3659550a\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:57:{s:7:\"columns\";i:5;s:5:\"space\";s:0:\"\";s:18:\"image_aspect_ratio\";d:1.3300000000000000710542735760100185871124267578125;s:10:\"item_style\";s:16:\"overlay-lightbox\";s:27:\"item_hover_style_background\";s:7:\"classic\";s:22:\"item_hover_style_color\";s:18:\"rgba(12,12,12,0.9)\";s:14:\"aux_max_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:14:\"aux_min_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:10:\"custom_css\";s:3240:\"@media screen and (min-width:1430px) {\nselector .aux-widget-recent-portfolios .aux-filters {\n    top: -80px;\n    left: 43%;\n    }\n}\n\nselector .aux-filters li {\n    font-family: Montserrat;\n    font-size: 16px;\n    font-weight: 400;\n}\n\nselector .aux-filters.aux-slideup li>a span {\n    padding: 0 1.5em;\n}\n\nselector .aux-iso-item {\n    margin-bottom: 0 !important;\n    transition: box-shadow 500ms ease-in-out;\n}\n\nselector .aux-iso-item:hover {\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\n}\n\nselector .aux-isotope-animated {\n    overflow: visible;\n}\n\nselector .aux-arrow-post-link  {\n    display: none;\n}\n\nselector .type-portfolio.hentry .entry-main {\n    opacity:0;\n    position: absolute;\n    margin: 0;\n    opacity: 0;\n    position: absolute;\n    width: 27%;\n    height: 64%;\n    left: 15%;\n    bottom: 0;\n    overflow: hidden;\n    background-color: rgba(0,0,0,0.9);\n    transition: all 500ms;\n}\n\nselector .entry-main::after {\n    content: \'\';\n    display: block;\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    z-index: 2;\n    box-shadow: 0px 20px 30px #000 inset;\n    pointer-events: none;\n    transition: all 500ms;\n}\n\nselector .entry-info {\n    position: absolute;\n    margin-bottom: 0;\n    transform: rotate(-90deg);\n    transform-origin: left;\n    left: 37%;\n    bottom: 5%;\n}\n\nselector .entry-tax {\n    min-width: 450px;\n    white-space: nowrap;\n}\n\nselector .entry-tax a {\n    color: #FFF;\n}\n\nselector .aux-arrow-nav.aux-round .aux-overlay {\n    transition-duration: 500ms;\n}\n\nselector .entry-header {\n    white-space: nowrap;\n    position: absolute;\n    bottom: -53px;\n    left: 60%;\n    transform-origin: left;\n    transform: rotate(-90deg);\n}\n\n\nselector .aux-hover-circle-plus {\n    transform: none;\n    width: 100%;\n    transition: opacity 500ms !important;\n    position: relative;\n}\n\nselector .aux-arrow-nav.aux-round.aux-semi-small {\n    box-shadow: none;\n    border-radius: 0;\n    background-color: rgba(0,0,0,0.9);\n    width: 100%;\n    padding-top: 100%;\n}\n\nselector .type-portfolio.hentry .entry-main:hover {\n    background-color: #FFF !important;\n}\n\nselector .type-portfolio.hentry .entry-main .entry-title a {\n    line-height: 106px;\n    display: inline-block;\n    min-width: 500px;\n    padding-left: 28%;\n}\n\nselector .type-portfolio.hentry .entry-main:hover a {\n    color: #000;\n}\n\nselector .entry-main:hover::after {\n    box-shadow: 0px 20px 30px #FFF inset;\n}\n\nselector .entry-title a:hover {\n    color: rgba(0,0,0,0.8) !important;\n}\n\nselector .type-portfolio.hentry:hover .entry-main {\n        opacity:1;\n}\n\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\n    transform: none;\n    top: 0;\n    bottom: 0;\n    padding:0;\n}\n\nselector .aux-frame-darken::after {\n    display: none\n}\n\nselector .aux-overlay-content {\n    top: 0;\n    left: 0;\n    transform: none;\n    padding: 0;\n    height: 100%;\n    text-align: left;\n}\n\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\n    background-color: #FFF;\n    border-radius: 0;\n}\n\n\nselector .aux-portfolio-overlay-buttons {\n    width: auto;\n    position: absolute;\n    left: 15%;\n    right: 58%;\n}\n\nselector .aux-hover-circle-plus  > a {\n    display: block;\n    margin: 0;\n    \n}\n\";s:8:\"paginate\";s:0:\"\";s:3:\"num\";i:5;s:28:\"_box_shadow_hover_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:3;s:4:\"blur\";i:70;s:6:\"spread\";i:0;s:5:\"color\";s:15:\"rgba(0,0,0,0.3)\";}s:14:\"_margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"columns_tablet\";i:3;s:14:\"columns_mobile\";i:2;s:27:\"title_typography_typography\";s:6:\"custom\";s:28:\"title_typography_font_family\";s:7:\"Poppins\";s:26:\"title_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:28:\"title_typography_font_weight\";i:600;s:28:\"title_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:31:\"title_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:-1;s:5:\"sizes\";a:0:{}}s:26:\"info_typography_typography\";s:6:\"custom\";s:27:\"info_typography_font_family\";s:10:\"Montserrat\";s:25:\"info_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:27:\"info_typography_font_weight\";i:500;s:26:\"info_typography_font_style\";s:6:\"normal\";s:27:\"info_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.399999999999999911182158029987476766109466552734375;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"title_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:38:\"title_typography_letter_spacing_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:32:\"info_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:32:\"info_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:34:\"info_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:22:\"item_hover_style_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"item_hover_style_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"item_hover_style_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"item_hover_style_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"entry_box_bg_color_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"entry_box_bg_color_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:31:\"entry_box_bg_color_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:33:\"entry_box_bg_color_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"background_pseudo_before_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:37:\"background_pseudo_before_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:39:\"background_pseudo_before_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"background_pseudo_after_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:36:\"background_pseudo_after_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:38:\"background_pseudo_after_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:26:\"aux_recent_portfolios_grid\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}'),(1694,112,'_elementor_version','3.5.6'),(1695,112,'_wp_page_template','elementor_canvas'),(1703,114,'auxin-autop','no'),(1705,115,'_wp_page_template','default'),(1706,115,'_elementor_edit_mode','builder'),(1707,115,'_elementor_template_type','wp-page'),(1708,115,'_elementor_version','3.5.6');
INSERT INTO `wp_postmeta` VALUES (1709,115,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"107cde7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea77a7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6529a2\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"preloadable\":\"yes\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"num\":6,\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":1.9499999999999999555910790149937383830547332763671875},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1710,115,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1711,115,'_elementor_page_assets','a:0:{}'),(1712,116,'_wp_page_template','default'),(1713,116,'_elementor_edit_mode','builder'),(1714,116,'_elementor_template_type','wp-page'),(1715,116,'_elementor_version','3.5.6'),(1716,116,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"112e126\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"dd31144\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"8b44f15\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"e7caed3\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"25ecc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"fed167c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"41fa4b9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fecdb5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"bb7d11d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1495298\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"1ddece9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"ec9cf28\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f09e035\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"8374cf4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"e1b246b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"dae5652\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"95cbfa4\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"9edda7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ce1397\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"2e251b6\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"107cde7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ea77a7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6529a2\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"preloadable\":\"yes\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"num\":6,\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":1.9499999999999999555910790149937383830547332763671875},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1717,116,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1718,116,'_elementor_page_assets','a:0:{}'),(1719,117,'_wp_page_template','elementor_canvas'),(1720,117,'_elementor_edit_mode','builder'),(1721,117,'_elementor_template_type','wp-page'),(1722,117,'_elementor_version','3.5.6'),(1723,117,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1724,117,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1725,117,'_elementor_page_assets','a:0:{}'),(1727,118,'auxin-autop','no'),(1728,118,'_elementor_template_type','section'),(1729,118,'_elementor_edit_mode','builder'),(1730,118,'_elementor_data','a:1:{i:0;a:5:{s:2:\"id\";s:8:\"3b48791e\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:5:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1200;s:5:\"sizes\";a:0:{}}s:3:\"gap\";s:2:\"no\";s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:170;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:35;s:6:\"bottom\";i:0;s:4:\"left\";i:35;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"2e03b7c\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:1:{s:12:\"_column_size\";i:100;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";i:56075064;s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:13:{s:13:\"content_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1200;s:5:\"sizes\";a:0:{}}s:3:\"gap\";s:2:\"no\";s:9:\"structure\";i:40;s:21:\"background_background\";s:8:\"gradient\";s:16:\"background_color\";s:7:\"#5a79ed\";s:18:\"background_color_b\";s:7:\"#5351fb\";s:29:\"background_overlay_background\";s:7:\"classic\";s:24:\"background_overlay_image\";a:2:{s:2:\"id\";i:6156;s:3:\"url\";s:72:\"http://library.phlox.pro/wp-content/uploads/2019/05/counter-bg-shape.svg\";}s:26:\"background_overlay_opacity\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:13:\"border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:20;s:5:\"right\";i:20;s:6:\"bottom\";i:20;s:4:\"left\";i:20;s:8:\"isLinked\";b:1;}s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";i:0;s:6:\"bottom\";s:0:\"\";s:4:\"left\";i:0;s:8:\"isLinked\";b:1;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:103;s:5:\"right\";i:75;s:6:\"bottom\";i:94;s:4:\"left\";i:70;s:8:\"isLinked\";b:0;}s:30:\"background_overlay_size_tablet\";s:5:\"cover\";}s:8:\"elements\";a:4:{i:0;a:5:{s:2:\"id\";s:8:\"7ea8abb0\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:50;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"4f70f2ab\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:19:{s:13:\"ending_number\";i:1200;s:18:\"thousand_separator\";s:0:\"\";s:5:\"title\";s:13:\"Happy Clients\";s:12:\"number_color\";s:7:\"#ffffff\";s:28:\"typography_number_typography\";s:6:\"custom\";s:29:\"typography_number_font_family\";s:10:\"Montserrat\";s:27:\"typography_number_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:29:\"typography_number_font_weight\";s:4:\"bold\";s:29:\"typography_number_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:66;s:5:\"sizes\";a:0:{}}s:32:\"typography_number_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:-1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#ffffff\";s:27:\"typography_title_typography\";s:6:\"custom\";s:28:\"typography_title_font_family\";s:7:\"Poppins\";s:26:\"typography_title_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:28:\"typography_title_font_weight\";i:500;s:28:\"typography_title_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:10:\"custom_css\";s:62:\"selector .elementor-counter-number {\n    margin-bottom: 9px;\n}\";s:18:\"aux_animation_name\";s:11:\"aux-fade-in\";s:20:\"aux_animation_easing\";s:17:\"0.165,0.84,0.44,1\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"counter\";}}s:7:\"isInner\";b:1;}i:1;a:5:{s:2:\"id\";s:8:\"62a4fe87\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:50;s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:30;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"6a6f4ccf\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:13:\"ending_number\";i:856;s:18:\"thousand_separator\";s:0:\"\";s:5:\"title\";s:13:\"Lines Of Code\";s:12:\"number_color\";s:7:\"#ffffff\";s:28:\"typography_number_typography\";s:6:\"custom\";s:29:\"typography_number_font_family\";s:10:\"Montserrat\";s:27:\"typography_number_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:29:\"typography_number_font_weight\";s:4:\"bold\";s:29:\"typography_number_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:66;s:5:\"sizes\";a:0:{}}s:32:\"typography_number_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:-1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#ffffff\";s:27:\"typography_title_typography\";s:6:\"custom\";s:28:\"typography_title_font_family\";s:7:\"Poppins\";s:26:\"typography_title_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:28:\"typography_title_font_weight\";i:500;s:28:\"typography_title_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:10:\"custom_css\";s:62:\"selector .elementor-counter-number {\n    margin-bottom: 9px;\n}\";s:18:\"aux_animation_name\";s:11:\"aux-fade-in\";s:19:\"aux_animation_delay\";i:150;s:20:\"aux_animation_easing\";s:17:\"0.165,0.84,0.44,1\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"counter\";}}s:7:\"isInner\";b:1;}i:2;a:5:{s:2:\"id\";i:7762663;s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:50;s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:30;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";i:692728000;s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:13:\"ending_number\";i:74;s:18:\"thousand_separator\";s:0:\"\";s:5:\"title\";s:14:\"Great Features\";s:12:\"number_color\";s:7:\"#ffffff\";s:28:\"typography_number_typography\";s:6:\"custom\";s:29:\"typography_number_font_family\";s:10:\"Montserrat\";s:27:\"typography_number_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:29:\"typography_number_font_weight\";s:4:\"bold\";s:29:\"typography_number_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:66;s:5:\"sizes\";a:0:{}}s:32:\"typography_number_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:-1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#ffffff\";s:27:\"typography_title_typography\";s:6:\"custom\";s:28:\"typography_title_font_family\";s:7:\"Poppins\";s:26:\"typography_title_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:28:\"typography_title_font_weight\";i:500;s:28:\"typography_title_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:10:\"custom_css\";s:62:\"selector .elementor-counter-number {\n    margin-bottom: 9px;\n}\";s:18:\"aux_animation_name\";s:11:\"aux-fade-in\";s:19:\"aux_animation_delay\";i:300;s:20:\"aux_animation_easing\";s:17:\"0.165,0.84,0.44,1\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"counter\";}}s:7:\"isInner\";b:1;}i:3;a:5:{s:2:\"id\";s:7:\"7a26183\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:25;s:12:\"_inline_size\";N;s:19:\"_inline_size_tablet\";i:50;s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:30;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:8:\"6ea5f795\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:13:\"ending_number\";i:137;s:18:\"thousand_separator\";s:0:\"\";s:5:\"title\";s:11:\"Mega Blocks\";s:12:\"number_color\";s:7:\"#ffffff\";s:28:\"typography_number_typography\";s:6:\"custom\";s:29:\"typography_number_font_family\";s:10:\"Montserrat\";s:27:\"typography_number_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:29:\"typography_number_font_weight\";s:4:\"bold\";s:29:\"typography_number_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:66;s:5:\"sizes\";a:0:{}}s:32:\"typography_number_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:-1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:11:\"title_color\";s:7:\"#ffffff\";s:27:\"typography_title_typography\";s:6:\"custom\";s:28:\"typography_title_font_family\";s:7:\"Poppins\";s:26:\"typography_title_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:28:\"typography_title_font_weight\";i:500;s:28:\"typography_title_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}s:10:\"custom_css\";s:62:\"selector .elementor-counter-number {\n    margin-bottom: 9px;\n}\";s:18:\"aux_animation_name\";s:11:\"aux-fade-in\";s:19:\"aux_animation_delay\";i:450;s:20:\"aux_animation_easing\";s:17:\"0.165,0.84,0.44,1\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:7:\"counter\";}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:1;}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}'),(1731,118,'_elementor_version','3.5.6'),(1732,118,'_wp_page_template','elementor_canvas'),(1741,120,'_wp_page_template','elementor_canvas'),(1742,120,'_elementor_edit_mode','builder'),(1743,120,'_elementor_template_type','wp-page'),(1744,120,'_elementor_version','3.5.6'),(1745,120,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1746,120,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1747,120,'_elementor_page_assets','a:0:{}'),(1748,121,'_wp_page_template','elementor_canvas'),(1749,121,'_elementor_edit_mode','builder'),(1750,121,'_elementor_template_type','wp-page'),(1751,121,'_elementor_version','3.5.6'),(1752,121,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1753,121,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1754,121,'_elementor_page_assets','a:0:{}'),(1755,122,'_wp_page_template','elementor_canvas'),(1756,122,'_elementor_edit_mode','builder'),(1757,122,'_elementor_template_type','wp-page'),(1758,122,'_elementor_version','3.5.6'),(1759,122,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1760,122,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1761,122,'_elementor_page_assets','a:0:{}'),(1762,123,'_wp_page_template','elementor_canvas'),(1763,123,'_elementor_edit_mode','builder'),(1764,123,'_elementor_template_type','wp-page'),(1765,123,'_elementor_version','3.5.6'),(1766,123,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1767,123,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1768,123,'_elementor_page_assets','a:0:{}'),(1769,124,'_wp_page_template','elementor_canvas'),(1770,124,'_elementor_edit_mode','builder'),(1771,124,'_elementor_template_type','wp-page'),(1772,124,'_elementor_version','3.5.6'),(1773,124,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1774,124,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1775,124,'_elementor_page_assets','a:0:{}'),(1776,125,'_wp_page_template','elementor_canvas'),(1777,125,'_elementor_edit_mode','builder'),(1778,125,'_elementor_template_type','wp-page'),(1779,125,'_elementor_version','3.5.6');
INSERT INTO `wp_postmeta` VALUES (1780,125,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1781,125,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1782,125,'_elementor_page_assets','a:0:{}'),(1784,73,'_edit_lock','1647608429:1'),(1786,126,'_wp_page_template','elementor_canvas'),(1787,126,'_elementor_edit_mode','builder'),(1788,126,'_elementor_template_type','wp-page'),(1789,126,'_elementor_version','3.5.6'),(1790,126,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1791,126,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1792,126,'_elementor_page_assets','a:0:{}'),(1794,74,'_edit_last','1'),(1795,127,'auxin-autop','no'),(1796,127,'_edit_lock','1647003643:1'),(1797,127,'_edit_last','1'),(1798,127,'page_footer_attribution','default'),(1799,127,'page_footer_is_sticky','default'),(1800,127,'page_elementor_header_template','7'),(1801,127,'page_header_use_legacy','default'),(1802,127,'page_overlay_header','default'),(1803,127,'page_header_top_sticky','default'),(1804,127,'aux_page_template_content_location','above-in-frame'),(1805,127,'page_elementor_footer_template','69'),(1806,127,'page_footer_use_legacy','default'),(1807,127,'page_header_section_use_legacy','default'),(1808,127,'page_header_menu','default'),(1809,127,'display_page_header_cover','0'),(1810,127,'page_header_navigation_layout','default'),(1811,127,'page_header_width','default'),(1812,127,'page_header_search_button','default'),(1813,127,'page_header_logo_display','default'),(1814,127,'page_header_border_bottom','default'),(1815,127,'page_header_animation','default'),(1816,127,'page_header_color_scheme','default'),(1817,127,'page_header_sticky_color_scheme','default'),(1818,127,'page_header_logo_can_scale','default'),(1819,127,'page_vertical_header_items_align','default'),(1820,127,'page_vertical_menu_footer_display','default'),(1821,127,'page_vertical_header_search_border','default'),(1822,127,'page_header_social_icons','default'),(1823,127,'page_header_social_icons_size','default'),(1824,127,'page_top_header_section_use_legacy','default'),(1825,127,'aux_show_topheader','default'),(1826,127,'aux_topheader_layout','default'),(1827,127,'aux_show_topheader_message','default'),(1828,127,'aux_show_topheader_secondary_message','default'),(1829,127,'page_general_footer_section_use_legacy','default'),(1830,127,'page_show_footer','default'),(1831,127,'page_footer_components_layout','default'),(1832,127,'page_show_subfooter','default'),(1833,127,'content_layout','default'),(1834,127,'page_layout','default'),(1835,127,'page_sidebar_style','default'),(1836,127,'show_content_top_margin','default'),(1837,127,'page_show_goto_top_btn','default'),(1838,127,'page_goto_top_alignment','default'),(1839,127,'aux_title_bar_show','default'),(1840,127,'subtitle_position','before'),(1841,127,'aux_title_bar_preset','default'),(1842,127,'aux_title_bar_enable_customize','0'),(1843,127,'aux_title_bar_content_width_type','boxed'),(1844,127,'aux_title_bar_content_section_height','auto'),(1845,127,'aux_title_bar_title_show','1'),(1846,127,'aux_title_bar_heading_bordered','0'),(1847,127,'aux_title_bar_heading_boxed','0'),(1848,127,'aux_title_bar_meta_enabled','0'),(1849,127,'aux_title_bar_bread_enabled','1'),(1850,127,'aux_title_bar_bread_bordered','0'),(1851,127,'aux_title_bar_text_align','left'),(1852,127,'aux_title_bar_overlay_pattern','none'),(1853,127,'aux_title_bar_overlay_pattern_opacity','0.15'),(1854,127,'aux_title_bar_color_style','dark'),(1855,127,'aux_title_bar_bg_show','0'),(1856,127,'aux_title_bar_bg_parallax','0'),(1857,127,'aux_title_bar_bg_size','cover'),(1858,127,'aux_custom_bg_show','0'),(1859,127,'aux_custom_bg_repeat','repeat'),(1860,127,'aux_custom_bg_attach','scroll'),(1861,127,'aux_custom_bg_position','left top'),(1862,127,'aux_custom_bg_size','auto'),(1863,127,'top_slider_id','none'),(1864,127,'aux_metafields_custom_styles',''),(1866,127,'_elementor_template_type','wp-page'),(1867,127,'_elementor_version','3.5.6'),(1868,129,'auxin-autop','no'),(1869,129,'_elementor_template_type','header'),(1870,129,'_elementor_edit_mode','builder'),(1871,129,'_elementor_data','a:1:{i:0;a:5:{s:2:\"id\";s:7:\"dfc47c5\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:3:{s:3:\"gap\";s:2:\"no\";s:16:\"content_position\";s:6:\"middle\";s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:31;s:5:\"right\";i:35;s:6:\"bottom\";i:0;s:4:\"left\";i:35;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"da9f10d\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;s:16:\"content_position\";s:6:\"center\";s:5:\"align\";s:13:\"space-between\";}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"54c7e17\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:1:{s:14:\"_element_width\";s:4:\"auto\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:8:\"aux_logo\";}i:1;a:5:{s:2:\"id\";s:7:\"6c98afc\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:15:{s:9:\"menu_slug\";s:11:\"header-menu\";s:8:\"splitter\";s:0:\"\";s:14:\"display_burger\";s:6:\"custom\";s:10:\"breakpoint\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:5500;s:5:\"sizes\";a:0:{}}s:20:\"burger_menu_location\";s:7:\"overlay\";s:16:\"burger_btn_color\";s:16:\"rgba(2, 1, 1, 0)\";s:18:\"fullscr_item_color\";s:7:\"#003777\";s:33:\"fullscr_menu_item_typo_typography\";s:6:\"custom\";s:34:\"fullscr_menu_item_typo_font_family\";s:6:\"Oswald\";s:32:\"fullscr_menu_item_typo_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:34:\"fullscr_menu_item_typo_font_weight\";i:700;s:37:\"fullscr_menu_item_typo_text_transform\";s:10:\"capitalize\";s:34:\"fullscr_menu_item_typo_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:14:\"_element_width\";s:4:\"auto\";s:10:\"custom_css\";s:751:\"selector .aux-burger{\n	background-image: url(\"data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'28\' height=\'15\' viewBox=\'0 0 28 15\'%3E%3Cg id=\'Group_546\' data-name=\'Group 546\' transform=\'translate(2.5 2.5)\'%3E%3Cline id=\'Line_1\' data-name=\'Line 1\' x2=\'23\' fill=\'none\' stroke=\'%23003777\' stroke-linecap=\'round\' stroke-width=\'5\'/%3E%3Cline id=\'Line_2\' data-name=\'Line 2\' x2=\'11\' transform=\'translate(12 10)\' fill=\'none\' stroke=\'%23003777\' stroke-linecap=\'round\' stroke-width=\'5\'/%3E%3Cline id=\'Line_3\' data-name=\'Line 3\' x2=\'2\' transform=\'translate(0 10)\' fill=\'none\' stroke=\'%23003777\' stroke-linecap=\'round\' stroke-width=\'5\'/%3E%3C/g%3E%3C/svg%3E%0A\");\n	background-repeat:no-repeat;\n	background-size:23px;\n	width:23px;\n	height:23px\n}\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:12:\"aux_menu_box\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}'),(1872,129,'_elementor_version','3.5.6'),(1873,129,'_wp_page_template','default'),(1879,127,'_wp_page_template','elementor_canvas'),(1880,127,'_elementor_data','[{\"id\":\"732c14bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e649242\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"49c92641\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"519269b1\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"77d5420e\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"31c3726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"8f1a68c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"68c8be98\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"Architecture\",\"title_secondary_highlight\":\" and Decor\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2f599125\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"3765e736\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"79a6505d\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"1d1de995\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2e5ceb42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"1634b921\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6de9cf8b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2268a3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"73466b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of art\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5b40842c\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"1c4d3103\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"350b7eff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"761b524f\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"388b46e8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de76a7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"28dd6542\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4726550\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_width\":{\"unit\":\"px\",\"size\":\"1920\",\"sizes\":[]}},\"elements\":[{\"id\":\"2d084ad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"40\",\"align\":\"flex-start\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"9da38a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sunyu-kim-q1rwmAmRSBM-unsplash.png\",\"id\":\"44\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"59363a41\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        margin: 0 10%;\\n    }\\n}\"},\"elements\":[{\"id\":\"7b0eef25\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Let Your Home Be Unique\",\"title_secondary_after\":\"Stylish.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"466\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"738\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5620e9b1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"7c2d7921\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"26a4191d\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>01<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Client Needs\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"74fe5c12\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"249dd838\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>02<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Planning Design\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"25fe8d5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63cf7508\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>03<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Architect Sketch\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":900,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"236fdb50\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"4c901390\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"501aaba4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"6a806e89\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"61ad2b45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"5bd075ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2ce96f80\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"48f15bb\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"637385a4\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"84043c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6de9c188\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"444ca3bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"24d359a\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"1a69980f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"7e739c8d\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"147c6f0a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5d01d8ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"3ac4a9bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"212135aa\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"69deae22\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"60fe83b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"3f981558\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"44d2c371\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"5b3fd206\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"4591bee9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5ba98f86\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"245bcb74\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6f3a12e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"34506409\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7b3fd775\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f262b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"475daab2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"48162f74\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5c169874\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"6f871730\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"4e08bac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"13c4b6f0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"1346367c\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4713cdd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"12ac2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4e4f2413\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"219ca31d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5785675d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7e2aa2ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b0503d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"3a7532b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"56f55568\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"613382ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"18e4c1c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"55296ec0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6681f76d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"67569c07\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"8f853e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5c51c6\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"3e95cd1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"1ac8a3ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"6103b041\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"b566607\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d69e6f5\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1881,127,'_elementor_page_assets','a:0:{}'),(1883,131,'_elementor_edit_mode','builder'),(1884,131,'_elementor_template_type','wp-page'),(1885,131,'_elementor_version','3.5.6'),(1886,131,'_wp_page_template','elementor_canvas'),(1887,131,'_elementor_data','[{\"id\":\"732c14bf\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e649242\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"49c92641\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"519269b1\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"77d5420e\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"31c3726\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"8f1a68c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"68c8be98\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"Architecture\",\"title_secondary_highlight\":\" and Decor\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2f599125\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"3765e736\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"79a6505d\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"1d1de995\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2e5ceb42\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"1634b921\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6de9cf8b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2268a3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"73466b51\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of art\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5b40842c\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"1c4d3103\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"350b7eff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"761b524f\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"388b46e8\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de76a7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"28dd6542\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4726550\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_width\":{\"unit\":\"px\",\"size\":\"1920\",\"sizes\":[]}},\"elements\":[{\"id\":\"2d084ad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"40\",\"align\":\"flex-start\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"9da38a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sunyu-kim-q1rwmAmRSBM-unsplash.png\",\"id\":\"44\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"59363a41\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"60\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        margin: 0 10%;\\n    }\\n}\"},\"elements\":[{\"id\":\"7b0eef25\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Let Your Home Be Unique\",\"title_secondary_after\":\"Stylish.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"466\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"738\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5620e9b1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"7c2d7921\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"26a4191d\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>01<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Client Needs\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"74fe5c12\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"249dd838\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>02<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Planning Design\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"25fe8d5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_mobile\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"63cf7508\",\"elType\":\"widget\",\"settings\":{\"title\":\"<p>03<\\/p>\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"Architect Sketch\",\"description\":\"<p>A wonderful serenity has taken possession of my entire...<\\/p>\",\"title_text_shadow_text_shadow\":{\"horizontal\":\"1\",\"vertical\":\"1\",\"blur\":\"1\",\"color\":\"rgba(0,0,0,0.3)\"},\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=accent\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"77\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#2A2A2A\",\"description_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"55\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"1\"},\"_background_background\":\"classic\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"custom_css\":\"selector .aux-widget-inner{\\n    display: flex;\\n    justify-content: center;\\n    flex-direction: column;\\n}\\nselector .aux-modern-heading-primary{\\n    position: relative;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -15px;\\n    top: 45px;\\n    z-index: 9;\\n}\\nselector .aux-modern-heading-primary p{\\n    margin: 0;\\n    position: relative;\\n    z-index: 99;\\n}\\nselector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px #4B4B4B;\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:66px !important;\\n    }\\n    selector .aux-head-highlight{\\n        font-size:23px !important;\\n    }\\n    selector .aux-modern-heading-description{\\n        font-size:14px !important;\\n    }\\n}\\n@media screen and (max-width:1024px){\\n    selector .aux-modern-heading-primary:before{\\n        content: \'\';\\n        width: 40px;\\n        height: 40px;\\n        top: 30px;\\n    }\\n}\",\"title_typography_font_family\":\"Poppins\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":900,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"236fdb50\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"4c901390\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"501aaba4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"6a806e89\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"61ad2b45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"5bd075ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2ce96f80\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"48f15bb\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"637385a4\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Project\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"84043c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6de9c188\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"444ca3bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"24d359a\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"1a69980f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"7e739c8d\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"147c6f0a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5d01d8ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"3ac4a9bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"212135aa\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"69deae22\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"60fe83b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/sean-pollock-PhYq704ffdA-unsplash.png\",\"id\":\"40\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%;\\n    }\\n}\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"3f981558\",\"elType\":\"widget\",\"settings\":{\"icon_or_image\":\"image\",\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/11\\/Group_88.png\",\"id\":\"19\"},\"title\":\"100%\",\"content\":\"<p>Satisfaction<\\/p><p>Customer<\\/p>\",\"display_button\":\"\",\"btn_label\":\"Read More\",\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.6\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"-10\",\"sizes\":[]},\"content_color\":\"#FFFFFFB3\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"content_typography_font_weight\":\"300\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"77\",\"bottom\":\"35\",\"left\":\"77\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_type_mobile\":\"relative\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"custom_css\":\"selector:before{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n    position: absolute;\\n    left: -20px;\\n    top: -20px;\\n    box-shadow: 0px 9px 35px #00000012;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        right:30px;\\n    }\\n}\",\"__globals__\":{\"overlay_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"content_color\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"44d2c371\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"193\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n    selector .elementor-element-populated {\\n        margin: 0px 20px 0px 120px;\\n    }\\n}\"},\"elements\":[{\"id\":\"5b3fd206\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_highlight\":\"Shaping The Future\",\"title_secondary_after\":\".\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"37\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"title2_highlighted_color\":\"#191919\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"515\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-head-highlight{\\n        font-size: 58px !important;\\n    }\\n}\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"4591bee9\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.25,0.46,0.45,0.94\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5ba98f86\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"220\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"245bcb74\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6f3a12e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"34506409\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"7b3fd775\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f262b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"475daab2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"48162f74\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"50\",\"content_position\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5c169874\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"6f871730\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:var(--e-global-color-accent);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"4e08bac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .elementor-widget:not(:last-child) {\\n    margin-bottom: 0px;\\n}\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"13c4b6f0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\",\"id\":\"39\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":3000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"1346367c\",\"elType\":\"widget\",\"settings\":{\"label\":\"Veiw all services\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"400\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"280\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1024px){\\n    selector{\\n        bottom: 110px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:150px;\\n    }\\n}\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4713cdd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"12ac2f58\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4e4f2413\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"219ca31d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5785675d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7e2aa2ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7b0503d0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"3a7532b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"56f55568\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"613382ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"18e4c1c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"55296ec0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6681f76d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"67569c07\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"8f853e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3a5c51c6\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"3e95cd1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"1ac8a3ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"6103b041\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"b566607\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d69e6f5\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1888,131,'_elementor_page_assets','a:0:{}'),(1890,127,'_elementor_edit_mode','builder'),(1891,132,'auxin-autop','no'),(1892,132,'_elementor_template_type','header'),(1893,132,'_elementor_edit_mode','builder'),(1894,132,'_elementor_data','a:1:{i:0;a:5:{s:2:\"id\";s:7:\"b5ef645\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:4:{s:3:\"gap\";s:2:\"no\";s:9:\"structure\";i:21;s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:22;s:5:\"right\";i:35;s:6:\"bottom\";i:0;s:4:\"left\";i:35;s:8:\"isLinked\";b:0;}s:16:\"content_position\";s:6:\"middle\";}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"7cdf920\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:4:{s:12:\"_column_size\";i:33;s:12:\"_inline_size\";d:19.23100000000000164845914696343243122100830078125;s:19:\"_inline_size_tablet\";i:100;s:19:\"_inline_size_mobile\";i:80;}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"7b6b3fe\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:2:{s:12:\"align_tablet\";s:6:\"center\";s:12:\"align_mobile\";s:4:\"left\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:8:\"aux_logo\";}}s:7:\"isInner\";b:0;}i:1;a:5:{s:2:\"id\";s:7:\"ca7e552\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:10:{s:12:\"_column_size\";i:66;s:12:\"_inline_size\";d:80.4080000000000012505552149377763271331787109375;s:16:\"content_position\";s:6:\"center\";s:5:\"align\";s:8:\"flex-end\";s:19:\"_inline_size_tablet\";i:100;s:19:\"_inline_size_mobile\";i:20;s:12:\"align_tablet\";s:6:\"center\";s:12:\"align_mobile\";s:8:\"flex-end\";s:13:\"margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:30;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:13:\"margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"e3c8b06\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:20:{s:9:\"menu_slug\";s:11:\"header-menu\";s:8:\"splitter\";s:0:\"\";s:10:\"item_color\";s:7:\"#39455E\";s:25:\"menu_item_typo_typography\";s:6:\"custom\";s:24:\"menu_item_typo_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:26:\"menu_item_typo_font_weight\";i:600;s:29:\"menu_item_typo_text_transform\";s:10:\"capitalize\";s:26:\"menu_item_typo_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:82;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"_element_width\";s:4:\"auto\";s:20:\"burger_menu_location\";s:7:\"overlay\";s:26:\"menu_item_typo_font_family\";s:9:\"Questrial\";s:31:\"menu_item_typo_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}s:33:\"menu_item_typo_line_height_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:23:\"menu_item_current_color\";s:7:\"#FEA000\";s:18:\"fullscr_item_color\";s:7:\"#000000\";s:33:\"fullscr_menu_item_typo_typography\";s:6:\"custom\";s:42:\"fullscr_current_item_typography_typography\";s:6:\"custom\";s:48:\"fullscr_current_item_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:35;s:5:\"sizes\";a:0:{}}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:12:\"aux_menu_box\";}i:1;a:5:{s:2:\"id\";s:7:\"9b85885\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:21:{s:5:\"label\";s:7:\"Sign Up\";s:6:\"border\";s:5:\"curve\";s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:8;s:5:\"right\";i:29;s:6:\"bottom\";i:8;s:4:\"left\";i:29;s:8:\"isLinked\";b:0;}s:21:\"background_background\";s:8:\"gradient\";s:16:\"background_color\";s:7:\"#FEA000\";s:18:\"background_color_b\";s:7:\"#FA721B\";s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:251;s:5:\"sizes\";a:0:{}}s:28:\"text_shadow_text_shadow_type\";s:3:\"yes\";s:23:\"text_shadow_text_shadow\";a:4:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:0;s:4:\"blur\";i:10;s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.02)\";}s:26:\"text_typography_typography\";s:6:\"custom\";s:27:\"text_typography_font_family\";s:9:\"Questrial\";s:25:\"text_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:27:\"text_typography_font_weight\";i:400;s:30:\"text_typography_text_transform\";s:10:\"capitalize\";s:27:\"text_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:-12;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:14:\"_element_width\";s:4:\"auto\";s:27:\"hover_background_background\";s:7:\"classic\";s:22:\"hover_background_color\";s:7:\"#323FFF\";s:11:\"hide_tablet\";s:13:\"hidden-tablet\";s:11:\"hide_mobile\";s:12:\"hidden-phone\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:10:\"aux_button\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}'),(1895,132,'_elementor_version','3.5.6'),(1896,132,'_wp_page_template','default'),(1898,132,'_edit_lock','1647004900:1'),(1900,69,'_edit_lock','1647248550:1'),(1901,133,'_elementor_template_type','kit'),(1902,133,'_elementor_edit_mode','builder'),(1903,133,'_elementor_version','3.0.15'),(1904,133,'_wp_page_template','default'),(1905,133,'_elementor_page_settings','a:11:{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:\"#191919\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#FF7E44\";}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:\"#FFFFFF\";}}s:13:\"custom_colors\";a:1:{i:0;a:3:{s:3:\"_id\";s:7:\"7036ef2\";s:5:\"title\";s:16:\"Background Color\";s:5:\"color\";s:7:\"#3E3E3E\";}}s:17:\"system_typography\";a:4:{i:0;a:4:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";}i:1;a:4:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";}i:2;a:4:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Mukta\";}i:3;a:4:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Mukta\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:0:\"\";s:9:\"site_name\";s:48:\"Architect Pro - Phlox Elementor WordPress Theme \";s:16:\"site_description\";s:35:\"Just another Phlox Demos Sites site\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:15:\"viewport_mobile\";s:0:\"\";s:15:\"viewport_tablet\";s:0:\"\";}'),(1906,133,'_elementor_data','[]'),(1917,7,'_edit_lock','1647004888:1'),(1919,134,'auxin-autop','no'),(1920,134,'_elementor_template_type','header'),(1921,134,'_elementor_edit_mode','builder'),(1922,134,'_elementor_data','a:1:{i:0;a:5:{s:2:\"id\";s:7:\"73af92a\";s:6:\"elType\";s:7:\"section\";s:8:\"settings\";a:4:{s:3:\"gap\";s:2:\"no\";s:16:\"content_position\";s:6:\"middle\";s:6:\"margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:0;s:5:\"right\";i:0;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:8:\"isLinked\";b:0;}s:7:\"padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";i:38;s:5:\"right\";i:35;s:6:\"bottom\";i:38;s:4:\"left\";i:35;s:8:\"isLinked\";b:0;}}s:8:\"elements\";a:1:{i:0;a:5:{s:2:\"id\";s:7:\"c44f64c\";s:6:\"elType\";s:6:\"column\";s:8:\"settings\";a:3:{s:12:\"_column_size\";i:100;s:12:\"_inline_size\";N;s:5:\"align\";s:13:\"space-between\";}s:8:\"elements\";a:2:{i:0;a:5:{s:2:\"id\";s:7:\"e852a39\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:1:{s:14:\"_element_width\";s:4:\"auto\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:8:\"aux_logo\";}i:1;a:5:{s:2:\"id\";s:7:\"6549e5b\";s:6:\"elType\";s:6:\"widget\";s:8:\"settings\";a:6:{s:9:\"menu_slug\";s:11:\"header-menu\";s:4:\"type\";s:6:\"burger\";s:20:\"burger_menu_location\";s:7:\"overlay\";s:16:\"burger_btn_style\";s:18:\"aux-regular-medium\";s:14:\"_element_width\";s:4:\"auto\";s:10:\"custom_css\";s:69:\"selector .aux-burger {\n    margin-right: 0;\n    margin-left: auto;\n}\n\";}s:8:\"elements\";a:0:{}s:10:\"widgetType\";s:12:\"aux_menu_box\";}}s:7:\"isInner\";b:0;}}s:7:\"isInner\";b:0;}}'),(1923,134,'_elementor_version','3.5.6'),(1924,134,'_wp_page_template','default'),(1928,134,'_edit_lock','1647004675:1'),(1929,76,'_edit_lock','1647249521:1'),(1959,138,'_wp_page_template',''),(1960,138,'_elementor_edit_mode','builder'),(1961,138,'_elementor_template_type','wp-page'),(1962,138,'_elementor_version','3.5.6'),(1963,138,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1964,138,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1965,138,'_elementor_page_assets','a:0:{}'),(1967,139,'_wp_page_template',''),(1968,139,'_elementor_edit_mode','builder'),(1969,139,'_elementor_template_type','wp-page'),(1970,139,'_elementor_version','3.5.6'),(1971,139,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1972,139,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1973,139,'_elementor_page_assets','a:0:{}'),(1975,140,'_wp_page_template','default'),(1976,140,'_elementor_edit_mode','builder'),(1977,140,'_elementor_template_type','wp-page'),(1978,140,'_elementor_version','3.5.6'),(1979,140,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1980,140,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1981,140,'_elementor_page_assets','a:0:{}'),(1983,141,'_wp_page_template','default'),(1984,141,'_elementor_edit_mode','builder'),(1985,141,'_elementor_template_type','wp-page'),(1986,141,'_elementor_version','3.5.6'),(1987,141,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1988,141,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1989,141,'_elementor_page_assets','a:0:{}'),(1990,142,'_wp_page_template','default'),(1991,142,'_elementor_edit_mode','builder'),(1992,142,'_elementor_template_type','wp-page'),(1993,142,'_elementor_version','3.5.6');
INSERT INTO `wp_postmeta` VALUES (1994,142,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1995,142,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(1996,142,'_elementor_page_assets','a:0:{}'),(1997,143,'_wp_page_template','default'),(1998,143,'_elementor_edit_mode','builder'),(1999,143,'_elementor_template_type','wp-page'),(2000,143,'_elementor_version','3.5.6'),(2001,143,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2002,143,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2003,143,'_elementor_page_assets','a:0:{}'),(2004,144,'_wp_page_template','default'),(2005,144,'_elementor_edit_mode','builder'),(2006,144,'_elementor_template_type','wp-page'),(2007,144,'_elementor_version','3.5.6'),(2008,144,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2009,144,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2010,144,'_elementor_page_assets','a:0:{}'),(2011,145,'_wp_page_template','default'),(2012,145,'_elementor_edit_mode','builder'),(2013,145,'_elementor_template_type','wp-page'),(2014,145,'_elementor_version','3.5.6'),(2015,145,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"#FF7E44\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#0c0c0c\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2016,145,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2017,145,'_elementor_page_assets','a:0:{}'),(2018,146,'_wp_page_template','default'),(2019,146,'_elementor_edit_mode','builder'),(2020,146,'_elementor_template_type','wp-page'),(2021,146,'_elementor_version','3.5.6'),(2022,146,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2023,146,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2024,146,'_elementor_page_assets','a:0:{}'),(2025,147,'_wp_page_template','default'),(2026,147,'_elementor_edit_mode','builder'),(2027,147,'_elementor_template_type','wp-page'),(2028,147,'_elementor_version','3.5.6'),(2029,147,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2030,147,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2031,147,'_elementor_page_assets','a:0:{}'),(2032,148,'_wp_page_template','default'),(2033,148,'_elementor_edit_mode','builder'),(2034,148,'_elementor_template_type','wp-page'),(2035,148,'_elementor_version','3.5.6'),(2036,148,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Interior\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2037,148,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2038,148,'_elementor_page_assets','a:0:{}'),(2039,149,'_wp_page_template','default'),(2040,149,'_elementor_edit_mode','builder'),(2041,149,'_elementor_template_type','wp-page'),(2042,149,'_elementor_version','3.5.6'),(2043,149,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2044,149,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2045,149,'_elementor_page_assets','a:0:{}'),(2047,150,'_wp_page_template','default'),(2048,150,'_elementor_edit_mode','builder'),(2049,150,'_elementor_template_type','wp-page'),(2050,150,'_elementor_version','3.5.6'),(2051,150,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]');
INSERT INTO `wp_postmeta` VALUES (2052,150,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2053,150,'_elementor_page_assets','a:0:{}'),(2055,151,'_wp_page_template','default'),(2056,151,'_elementor_edit_mode','builder'),(2057,151,'_elementor_template_type','wp-page'),(2058,151,'_elementor_version','3.5.6'),(2059,151,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2060,151,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2061,151,'_elementor_page_assets','a:0:{}'),(2063,152,'_wp_page_template','default'),(2064,152,'_elementor_edit_mode','builder'),(2065,152,'_elementor_template_type','wp-page'),(2066,152,'_elementor_version','3.5.6'),(2067,152,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2068,152,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2069,152,'_elementor_page_assets','a:0:{}'),(2071,153,'_wp_page_template','default'),(2072,153,'_elementor_edit_mode','builder'),(2073,153,'_elementor_template_type','wp-page'),(2074,153,'_elementor_version','3.5.6'),(2075,153,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2076,153,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2077,153,'_elementor_page_assets','a:0:{}'),(2078,154,'_wp_page_template','default'),(2079,154,'_elementor_edit_mode','builder'),(2080,154,'_elementor_template_type','wp-page'),(2081,154,'_elementor_version','3.5.6'),(2082,154,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#0c0c0c\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#030303\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#000000\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2083,154,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2084,154,'_elementor_page_assets','a:0:{}'),(2085,155,'_wp_page_template','default'),(2086,155,'_elementor_edit_mode','builder'),(2087,155,'_elementor_template_type','wp-page'),(2088,155,'_elementor_version','3.5.6'),(2089,155,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2090,155,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2091,155,'_elementor_page_assets','a:0:{}'),(2093,156,'_wp_page_template','default'),(2094,156,'_elementor_edit_mode','builder'),(2095,156,'_elementor_template_type','wp-page'),(2096,156,'_elementor_version','3.5.6'),(2097,156,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2098,156,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2099,156,'_elementor_page_assets','a:0:{}'),(2101,157,'_wp_page_template','default'),(2102,157,'_elementor_edit_mode','builder'),(2103,157,'_elementor_template_type','wp-page'),(2104,157,'_elementor_version','3.5.6'),(2105,157,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"globals\\/colors?id=primary\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2106,157,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2107,157,'_elementor_page_assets','a:0:{}'),(2109,158,'_wp_page_template','default'),(2110,158,'_elementor_edit_mode','builder'),(2111,158,'_elementor_template_type','wp-page'),(2112,158,'_elementor_version','3.5.6'),(2113,158,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2114,158,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2115,158,'_elementor_page_assets','a:0:{}'),(2117,159,'_wp_page_template','default'),(2118,159,'_elementor_edit_mode','builder'),(2119,159,'_elementor_template_type','wp-page'),(2120,159,'_elementor_version','3.5.6');
INSERT INTO `wp_postmeta` VALUES (2121,159,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2122,159,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2123,159,'_elementor_page_assets','a:0:{}'),(2124,160,'_wp_page_template','default'),(2125,160,'_elementor_edit_mode','builder'),(2126,160,'_elementor_template_type','wp-page'),(2127,160,'_elementor_version','3.5.6'),(2128,160,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2129,160,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2130,160,'_elementor_page_assets','a:0:{}'),(2131,161,'_wp_page_template','default'),(2132,161,'_elementor_edit_mode','builder'),(2133,161,'_elementor_template_type','wp-page'),(2134,161,'_elementor_version','3.5.6'),(2135,161,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6a2a4ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"c88840c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"c64ec4c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2ea59b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"728caab\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"e1f5440\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"5b08692\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"d6415c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2efe74b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"652994a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(2136,161,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2137,161,'_elementor_page_assets','a:0:{}'),(2138,162,'_wp_page_template','default'),(2139,162,'_elementor_edit_mode','builder'),(2140,162,'_elementor_template_type','wp-page'),(2141,162,'_elementor_version','3.5.6'),(2142,162,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6a2a4ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"c88840c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"c64ec4c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2ea59b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"728caab\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"e1f5440\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"5b08692\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"d6415c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2efe74b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"652994a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(2143,162,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2144,162,'_elementor_page_assets','a:0:{}'),(2145,163,'_wp_page_template','default'),(2146,163,'_elementor_edit_mode','builder'),(2147,163,'_elementor_template_type','wp-page'),(2148,163,'_elementor_version','3.5.6'),(2149,163,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":40,\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6a2a4ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\"},\"elements\":[{\"id\":\"c88840c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"c64ec4c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"2ea59b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"728caab\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"e1f5440\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"5b08692\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"d6415c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2efe74b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"652994a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(2150,163,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2151,163,'_elementor_page_assets','a:0:{}'),(2152,164,'_wp_page_template','default'),(2153,164,'_elementor_edit_mode','builder'),(2154,164,'_elementor_template_type','wp-page'),(2155,164,'_elementor_version','3.5.6'),(2156,164,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2157,164,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2158,164,'_elementor_page_assets','a:0:{}'),(2159,165,'_wp_page_template','default'),(2160,165,'_elementor_edit_mode','builder'),(2161,165,'_elementor_template_type','wp-page'),(2162,165,'_elementor_version','3.5.6'),(2163,165,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2164,165,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2165,165,'_elementor_page_assets','a:0:{}'),(2166,166,'_wp_page_template','default'),(2167,166,'_elementor_edit_mode','builder'),(2168,166,'_elementor_template_type','wp-page'),(2169,166,'_elementor_version','3.5.6'),(2170,166,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"230\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc3de27\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"882f823\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"6e4f184\",\"elType\":\"widget\",\"settings\":{\"title\":\"specialization\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"155\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        right:-20px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector .aux-modern-heading-primary{\\n        font-size:100px;\\n    }\\n    selector{\\n        top:90px;\\n        right:0px;\\n        left:0px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-80\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2171,166,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2172,166,'_elementor_page_assets','a:0:{}'),(2173,167,'_wp_page_template','default'),(2174,167,'_elementor_edit_mode','builder'),(2175,167,'_elementor_template_type','wp-page'),(2176,167,'_elementor_version','3.5.6');
INSERT INTO `wp_postmeta` VALUES (2177,167,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2178,167,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2179,167,'_elementor_page_assets','a:0:{}'),(2208,173,'_elementor_template_type','footer'),(2209,173,'_elementor_edit_mode','builder'),(2210,173,'_elementor_version','3.0.15'),(2211,173,'_wp_page_template','default'),(2212,173,'_elementor_data','[{\"id\":\"966bacc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"z_index\":\"9\",\"custom_css\":\"selector{\\n    margin: 0 0 0 29%;\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        margin:0 0 0 15%;\\n    }\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"eff4af3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"align\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"160\",\"bottom\":\"30\",\"left\":\"120\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .elementor-element-populated {\\n        padding: 30px 100px 30px 70px;\\n    }\\n}\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c03326d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets Talk About Your Project.\",\"divider\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"custom_css\":\"selector .aux-modern-heading-primary:after{\\n    content: \\\"\\\";\\n    width: 90px;\\n    height: 30px;\\n    background-image: url(\\\"data:image\\/svg+xml,%3Csvg xmlns=\'http:\\/\\/www.w3.org\\/2000\\/svg\' width=\'87.542\' height=\'32.602\' viewBox=\'0 0 87.542 32.602\'%3E%3Cpath id=\'arrow-right\' d=\'M58.542,17.419l-16.3,16.3-1.567-1.567L54.3,18.529H-29V16.313H54.3L40.674,2.685l1.567-1.567,16.3,16.3Z\' transform=\'translate(29 -1.118)\' fill=\'%23fff\'\\/%3E%3C\\/svg%3E\\\");\\n    background-repeat: no-repeat;\\n    display: block;\\n    margin-top: 15px;\\n}\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3d4392f\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text_normal_color\":\"#FFFFFF\",\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"32\",\"bottom\":\"13\",\"left\":\"32\",\"isLinked\":\"\"},\"text_normal_typo_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__dynamic__\":[],\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"d78342e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"81720b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"f8f7d0f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#A2A2A2B8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bfd5c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"7723a9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone:\",\"divider\":\"\",\"description\":\"<p>+123 4567 890<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"b1eb78b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a1bfed3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address:\",\"divider\":\"\",\"description\":\"<p>Patricia C. Amedee 41 WaldeckGrapevine Nashville, TX 76<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"9b6fb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b59132f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email:\",\"divider\":\"\",\"description\":\"<p>info@yourdomain.com<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3d26ed2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b85fb6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social:\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"4d86c2f\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"face book -\",\"icon\":\"check-1\",\"_id\":\"b2bf13c\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"youtube -\",\"icon\":\"check-1\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"ce345d3\"},{\"text_primary\":\"instagram \",\"icon\":\"check-1\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0f8c9ef\"},{\"text_primary\":\"twitter -\",\"icon\":\"check-1\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"7a3baa5\"},{\"text_primary\":\"behance\",\"icon\":\"check-1\",\"aux_custom_list_icon\":{\"value\":\"\",\"library\":\"\"},\"text_secondary\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"display_advanced\":\"no\",\"icon_color\":\"\",\"icon_color_tablet\":\"\",\"icon_color_mobile\":\"\",\"icon_background_color\":\"\",\"icon_background_color_tablet\":\"\",\"icon_background_color_mobile\":\"\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_color\":\"\",\"text_primary_color_tablet\":\"\",\"text_primary_color_mobile\":\"\",\"text_primary_typography_typography\":\"\",\"text_primary_typography_font_family\":\"\",\"text_primary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_font_weight\":\"\",\"text_primary_typography_text_transform\":\"\",\"text_primary_typography_font_style\":\"\",\"text_primary_typography_text_decoration\":\"\",\"text_primary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_tag\":\"span\",\"text_secondary_color\":\"\",\"text_secondary_color_tablet\":\"\",\"text_secondary_color_mobile\":\"\",\"text_secondary_typography_typography\":\"\",\"text_secondary_typography_font_family\":\"\",\"text_secondary_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_font_weight\":\"\",\"text_secondary_typography_text_transform\":\"\",\"text_secondary_typography_font_style\":\"\",\"text_secondary_typography_text_decoration\":\"\",\"text_secondary_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"44767d4\"}],\"direction\":\"horizontal\",\"list_column_gutter\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_weight\":\"300\",\"text1_typography_text_transform\":\"capitalize\",\"__dynamic__\":[],\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"433dc05\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9dda4b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"align\":\"space-between\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"a44d6a8\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width_mobile\":\"inherit\",\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"logo_type\":\"secondary\"},\"elements\":[],\"widgetType\":\"aux_logo\"},{\"id\":\"917e788\",\"elType\":\"widget\",\"settings\":{\"copyright_text\":\"&copy; {{Y}} PhLOX THEME.\",\"copyright_color\":\"#5B5B5B99\",\"copyright_typo_typography\":\"custom\",\"copyright_typo_font_size\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"copyright_typo_font_weight\":\"400\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"align_mobile\":\"center\",\"copyright_typo_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"aux_copyright\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"22f8327\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a71179f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2213,173,'_elementor_controls_usage','a:7:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"title_section\";a:2:{s:5:\"title\";i:5;s:7:\"divider\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:2:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:12:\"title_margin\";i:4;}s:25:\"description_style_section\";a:4:{s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:39:\"description_typography_font_size_mobile\";i:3;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:5;s:19:\"aux_animation_delay\";i:3;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:4:{s:24:\"btn_bg_normal_background\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:33:\"text_normal_typo_font_size_mobile\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:33:\"aux_core_common_inview_transition\";a:2:{s:18:\"aux_animation_name\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:5:\"align\";i:2;s:19:\"_inline_size_tablet\";i:4;s:12:\"align_mobile\";i:1;s:12:\"_inline_size\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:1;s:13:\"margin_tablet\";i:4;s:14:\"padding_mobile\";i:4;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:1:{s:20:\"aux_animation_easing\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:5:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:4;s:7:\"z_index\";i:1;s:7:\"padding\";i:2;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:1;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:3:{s:9:\"direction\";i:1;s:18:\"list_column_gutter\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:18:\"list_style_section\";a:1:{s:9:\"connector\";i:1;}s:18:\"text_style_section\";a:5:{s:27:\"text1_typography_typography\";i:1;s:26:\"text1_typography_font_size\";i:1;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:1;s:33:\"text1_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_mobile\";i:1;}}s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:12:\"align_mobile\";i:1;s:9:\"logo_type\";i:1;}}}}s:13:\"aux_copyright\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:14:\"copyright_text\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_copyright\";a:5:{s:15:\"copyright_color\";i:1;s:25:\"copyright_typo_typography\";i:1;s:24:\"copyright_typo_font_size\";i:1;s:26:\"copyright_typo_font_weight\";i:1;s:31:\"copyright_typo_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;s:21:\"_element_width_mobile\";i:1;}}}}}'),(2215,174,'_elementor_template_type','footer'),(2216,174,'_elementor_edit_mode','builder'),(2217,174,'_elementor_version','3.0.15'),(2218,174,'_wp_page_template','default'),(2219,174,'_elementor_data','[{\"id\":\"966bacc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"z_index\":\"9\",\"custom_css\":\"selector{\\n    margin: 0 0 0 29%;\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        margin:0 0 0 15%;\\n    }\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"eff4af3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"align\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"160\",\"bottom\":\"30\",\"left\":\"120\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .elementor-element-populated {\\n        padding: 30px 100px 30px 70px;\\n    }\\n}\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c03326d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets Talk About Your Project.\",\"divider\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"custom_css\":\"selector .aux-modern-heading-primary:after{\\n    content: \\\"\\\";\\n    width: 90px;\\n    height: 30px;\\n    background-image: url(\\\"data:image\\/svg+xml,%3Csvg xmlns=\'http:\\/\\/www.w3.org\\/2000\\/svg\' width=\'87.542\' height=\'32.602\' viewBox=\'0 0 87.542 32.602\'%3E%3Cpath id=\'arrow-right\' d=\'M58.542,17.419l-16.3,16.3-1.567-1.567L54.3,18.529H-29V16.313H54.3L40.674,2.685l1.567-1.567,16.3,16.3Z\' transform=\'translate(29 -1.118)\' fill=\'%23fff\'\\/%3E%3C\\/svg%3E\\\");\\n    background-repeat: no-repeat;\\n    display: block;\\n    margin-top: 15px;\\n}\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3d4392f\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text_normal_color\":\"#FFFFFF\",\"__globals__\":{\"btn_bg_normal_color\":\"\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"32\",\"bottom\":\"13\",\"left\":\"32\",\"isLinked\":\"\"},\"text_normal_typo_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__dynamic__\":[],\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"btn_bg_normal_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"d78342e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"81720b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"f8f7d0f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#A2A2A2B8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bfd5c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"7723a9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone:\",\"divider\":\"\",\"description\":\"<p>+123 4567 890<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"b1eb78b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a1bfed3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address:\",\"divider\":\"\",\"description\":\"<p>Address 123 line 2<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"9b6fb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b59132f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email:\",\"divider\":\"\",\"description\":\"<p>info@yourdomain.com<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3d26ed2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b85fb6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social:\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"4d86c2f\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"face book -\",\"icon\":\"check-1\",\"_id\":\"b2bf13c\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"youtube -\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"ce345d3\"},{\"text_primary\":\"instagram \",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0f8c9ef\"},{\"text_primary\":\"twitter -\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"7a3baa5\"},{\"text_primary\":\"behance\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"44767d4\"}],\"direction\":\"horizontal\",\"list_column_gutter\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_weight\":\"300\",\"text1_typography_text_transform\":\"capitalize\",\"__dynamic__\":[],\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"433dc05\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9dda4b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"align\":\"space-between\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"a44d6a8\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width_mobile\":\"inherit\",\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"logo_type\":\"secondary\"},\"elements\":[],\"widgetType\":\"aux_logo\"},{\"id\":\"917e788\",\"elType\":\"widget\",\"settings\":{\"copyright_text\":\"&copy; {{Y}} Amaeka Technologies\",\"copyright_color\":\"#5B5B5B99\",\"copyright_typo_typography\":\"custom\",\"copyright_typo_font_size\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"copyright_typo_font_weight\":\"400\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"align_mobile\":\"center\",\"copyright_typo_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"aux_copyright\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"22f8327\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a71179f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2220,174,'_elementor_controls_usage','a:7:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"title_section\";a:2:{s:5:\"title\";i:5;s:7:\"divider\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:2:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:12:\"title_margin\";i:4;}s:25:\"description_style_section\";a:4:{s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:39:\"description_typography_font_size_mobile\";i:3;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:5;s:19:\"aux_animation_delay\";i:3;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:4:{s:24:\"btn_bg_normal_background\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:33:\"text_normal_typo_font_size_mobile\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:33:\"aux_core_common_inview_transition\";a:2:{s:18:\"aux_animation_name\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:5:\"align\";i:2;s:19:\"_inline_size_tablet\";i:4;s:12:\"align_mobile\";i:1;s:12:\"_inline_size\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:1;s:13:\"margin_tablet\";i:4;s:14:\"padding_mobile\";i:4;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:1:{s:20:\"aux_animation_easing\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:5:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:4;s:7:\"z_index\";i:1;s:7:\"padding\";i:2;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:1;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:3:{s:9:\"direction\";i:1;s:18:\"list_column_gutter\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:18:\"list_style_section\";a:1:{s:9:\"connector\";i:1;}s:18:\"text_style_section\";a:5:{s:27:\"text1_typography_typography\";i:1;s:26:\"text1_typography_font_size\";i:1;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:1;s:33:\"text1_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_mobile\";i:1;}}s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:12:\"align_mobile\";i:1;s:9:\"logo_type\";i:1;}}}}s:13:\"aux_copyright\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:14:\"copyright_text\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_copyright\";a:5:{s:15:\"copyright_color\";i:1;s:25:\"copyright_typo_typography\";i:1;s:24:\"copyright_typo_font_size\";i:1;s:26:\"copyright_typo_font_weight\";i:1;s:31:\"copyright_typo_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;s:21:\"_element_width_mobile\";i:1;}}}}}'),(2222,69,'_elementor_page_assets','a:0:{}'),(2224,175,'_elementor_template_type','footer'),(2225,175,'_elementor_edit_mode','builder'),(2226,175,'_elementor_version','3.5.6'),(2227,175,'_wp_page_template','default'),(2228,175,'_elementor_data','[{\"id\":\"966bacc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"z_index\":\"9\",\"custom_css\":\"selector{\\n    margin: 0 0 0 29%;\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        margin:0 0 0 15%;\\n    }\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"eff4af3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"align\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"140\",\"bottom\":\"30\",\"left\":\"120\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .elementor-element-populated {\\n        padding: 30px 100px 30px 70px;\\n    }\\n}\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c03326d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets Talk About Your Project.\",\"divider\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"custom_css\":\"selector .aux-modern-heading-primary:after{\\n    content: \\\"\\\";\\n    width: 90px;\\n    height: 30px;\\n    background-image: url(\\\"data:image\\/svg+xml,%3Csvg xmlns=\'http:\\/\\/www.w3.org\\/2000\\/svg\' width=\'87.542\' height=\'32.602\' viewBox=\'0 0 87.542 32.602\'%3E%3Cpath id=\'arrow-right\' d=\'M58.542,17.419l-16.3,16.3-1.567-1.567L54.3,18.529H-29V16.313H54.3L40.674,2.685l1.567-1.567,16.3,16.3Z\' transform=\'translate(29 -1.118)\' fill=\'%23fff\'\\/%3E%3C\\/svg%3E\\\");\\n    background-repeat: no-repeat;\\n    display: block;\\n    margin-top: 15px;\\n}\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3d4392f\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text_normal_color\":\"#FFFFFF\",\"__globals__\":{\"btn_bg_normal_color\":\"\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"32\",\"bottom\":\"13\",\"left\":\"32\",\"isLinked\":\"\"},\"text_normal_typo_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__dynamic__\":[],\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"btn_bg_normal_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"d78342e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"81720b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"f8f7d0f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#A2A2A2B8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bfd5c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"7723a9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone:\",\"divider\":\"\",\"description\":\"<p>+123 4567 890<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"b1eb78b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a1bfed3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address:\",\"divider\":\"\",\"description\":\"<p>Address 123 line 2<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"9b6fb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b59132f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email:\",\"divider\":\"\",\"description\":\"<p>info@yourdomain.com<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3d26ed2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b85fb6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social:\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"4d86c2f\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"face book -\",\"icon\":\"check-1\",\"_id\":\"b2bf13c\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"youtube -\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"ce345d3\"},{\"text_primary\":\"instagram \",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0f8c9ef\"},{\"text_primary\":\"twitter -\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"7a3baa5\"},{\"text_primary\":\"behance\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"44767d4\"}],\"direction\":\"horizontal\",\"list_column_gutter\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_weight\":\"300\",\"text1_typography_text_transform\":\"capitalize\",\"__dynamic__\":[],\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"433dc05\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9dda4b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"align\":\"space-between\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"a44d6a8\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width_mobile\":\"inherit\",\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"logo_type\":\"secondary\"},\"elements\":[],\"widgetType\":\"aux_logo\"},{\"id\":\"917e788\",\"elType\":\"widget\",\"settings\":{\"copyright_text\":\"&copy; {{Y}} Amaeka Technologies\",\"copyright_color\":\"#5B5B5B99\",\"copyright_typo_typography\":\"custom\",\"copyright_typo_font_size\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"copyright_typo_font_weight\":\"400\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"align_mobile\":\"center\",\"copyright_typo_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"aux_copyright\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"22f8327\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a71179f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2229,175,'_elementor_controls_usage','a:7:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"title_section\";a:2:{s:5:\"title\";i:5;s:7:\"divider\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:2:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:12:\"title_margin\";i:4;}s:25:\"description_style_section\";a:4:{s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:39:\"description_typography_font_size_mobile\";i:3;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:5;s:19:\"aux_animation_delay\";i:3;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:4:{s:24:\"btn_bg_normal_background\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:33:\"text_normal_typo_font_size_mobile\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:33:\"aux_core_common_inview_transition\";a:2:{s:18:\"aux_animation_name\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:5:\"align\";i:2;s:19:\"_inline_size_tablet\";i:4;s:12:\"align_mobile\";i:1;s:12:\"_inline_size\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:1;s:13:\"margin_tablet\";i:4;s:14:\"padding_mobile\";i:4;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:1:{s:20:\"aux_animation_easing\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:5:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:4;s:7:\"z_index\";i:1;s:7:\"padding\";i:2;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:1;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:3:{s:9:\"direction\";i:1;s:18:\"list_column_gutter\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:18:\"list_style_section\";a:1:{s:9:\"connector\";i:1;}s:18:\"text_style_section\";a:5:{s:27:\"text1_typography_typography\";i:1;s:26:\"text1_typography_font_size\";i:1;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:1;s:33:\"text1_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_mobile\";i:1;}}s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:12:\"align_mobile\";i:1;s:9:\"logo_type\";i:1;}}}}s:13:\"aux_copyright\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:14:\"copyright_text\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_copyright\";a:5:{s:15:\"copyright_color\";i:1;s:25:\"copyright_typo_typography\";i:1;s:24:\"copyright_typo_font_size\";i:1;s:26:\"copyright_typo_font_weight\";i:1;s:31:\"copyright_typo_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;s:21:\"_element_width_mobile\";i:1;}}}}}'),(2230,175,'_elementor_page_assets','a:0:{}'),(2233,176,'_elementor_template_type','footer'),(2234,176,'_elementor_edit_mode','builder'),(2235,176,'_elementor_version','3.5.6'),(2236,176,'_wp_page_template','default'),(2237,176,'_elementor_data','[{\"id\":\"966bacc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"z_index\":\"9\",\"custom_css\":\"selector{\\n    margin: 0 0 0 29%;\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        margin:0 0 0 15%;\\n    }\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"eff4af3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"align\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"74\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .elementor-element-populated {\\n        padding: 30px 100px 30px 70px;\\n    }\\n}\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c03326d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets Talk About Your Project.\",\"divider\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"custom_css\":\"selector .aux-modern-heading-primary:after{\\n    content: \\\"\\\";\\n    width: 90px;\\n    height: 30px;\\n    background-image: url(\\\"data:image\\/svg+xml,%3Csvg xmlns=\'http:\\/\\/www.w3.org\\/2000\\/svg\' width=\'87.542\' height=\'32.602\' viewBox=\'0 0 87.542 32.602\'%3E%3Cpath id=\'arrow-right\' d=\'M58.542,17.419l-16.3,16.3-1.567-1.567L54.3,18.529H-29V16.313H54.3L40.674,2.685l1.567-1.567,16.3,16.3Z\' transform=\'translate(29 -1.118)\' fill=\'%23fff\'\\/%3E%3C\\/svg%3E\\\");\\n    background-repeat: no-repeat;\\n    display: block;\\n    margin-top: 15px;\\n}\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3d4392f\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text_normal_color\":\"#FFFFFF\",\"__globals__\":{\"btn_bg_normal_color\":\"\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"32\",\"bottom\":\"13\",\"left\":\"32\",\"isLinked\":\"\"},\"text_normal_typo_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__dynamic__\":[],\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"btn_bg_normal_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"d78342e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"81720b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"f8f7d0f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#A2A2A2B8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bfd5c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"7723a9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone:\",\"divider\":\"\",\"description\":\"<p>+123 4567 890<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"b1eb78b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a1bfed3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address:\",\"divider\":\"\",\"description\":\"<p>Address 123 line 2<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"9b6fb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b59132f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email:\",\"divider\":\"\",\"description\":\"<p>info@yourdomain.com<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3d26ed2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b85fb6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social:\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"4d86c2f\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"face book -\",\"icon\":\"check-1\",\"_id\":\"b2bf13c\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"youtube -\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"ce345d3\"},{\"text_primary\":\"instagram \",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0f8c9ef\"},{\"text_primary\":\"twitter -\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"7a3baa5\"},{\"text_primary\":\"behance\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"44767d4\"}],\"direction\":\"horizontal\",\"list_column_gutter\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_weight\":\"300\",\"text1_typography_text_transform\":\"capitalize\",\"__dynamic__\":[],\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"433dc05\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9dda4b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"align\":\"space-between\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"a44d6a8\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width_mobile\":\"inherit\",\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"logo_type\":\"secondary\"},\"elements\":[],\"widgetType\":\"aux_logo\"},{\"id\":\"917e788\",\"elType\":\"widget\",\"settings\":{\"copyright_text\":\"&copy; {{Y}} Amaeka Technologies\",\"copyright_color\":\"#5B5B5B99\",\"copyright_typo_typography\":\"custom\",\"copyright_typo_font_size\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"copyright_typo_font_weight\":\"400\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"align_mobile\":\"center\",\"copyright_typo_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"aux_copyright\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"22f8327\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a71179f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2238,176,'_elementor_controls_usage','a:7:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"title_section\";a:2:{s:5:\"title\";i:5;s:7:\"divider\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:2:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:12:\"title_margin\";i:4;}s:25:\"description_style_section\";a:4:{s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:39:\"description_typography_font_size_mobile\";i:3;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:5;s:19:\"aux_animation_delay\";i:3;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:4:{s:24:\"btn_bg_normal_background\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:33:\"text_normal_typo_font_size_mobile\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:33:\"aux_core_common_inview_transition\";a:2:{s:18:\"aux_animation_name\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:5:\"align\";i:2;s:19:\"_inline_size_tablet\";i:4;s:12:\"align_mobile\";i:1;s:12:\"_inline_size\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:1;s:13:\"margin_tablet\";i:4;s:14:\"padding_mobile\";i:4;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:1:{s:20:\"aux_animation_easing\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:5:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:4;s:7:\"z_index\";i:1;s:7:\"padding\";i:2;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:1;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:3:{s:9:\"direction\";i:1;s:18:\"list_column_gutter\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:18:\"list_style_section\";a:1:{s:9:\"connector\";i:1;}s:18:\"text_style_section\";a:5:{s:27:\"text1_typography_typography\";i:1;s:26:\"text1_typography_font_size\";i:1;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:1;s:33:\"text1_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_mobile\";i:1;}}s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:12:\"align_mobile\";i:1;s:9:\"logo_type\";i:1;}}}}s:13:\"aux_copyright\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:14:\"copyright_text\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_copyright\";a:5:{s:15:\"copyright_color\";i:1;s:25:\"copyright_typo_typography\";i:1;s:24:\"copyright_typo_font_size\";i:1;s:26:\"copyright_typo_font_weight\";i:1;s:31:\"copyright_typo_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;s:21:\"_element_width_mobile\";i:1;}}}}}'),(2239,176,'_elementor_page_assets','a:0:{}'),(2242,177,'_elementor_template_type','footer'),(2243,177,'_elementor_edit_mode','builder'),(2244,177,'_elementor_version','3.5.6'),(2245,177,'_wp_page_template','default'),(2246,177,'_elementor_data','[{\"id\":\"966bacc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"6\",\"blur\":\"35\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.07058823529411765)\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"z_index\":\"9\",\"custom_css\":\"selector{\\n    margin: 0 0 0 29%;\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        margin:0 0 0 15%;\\n    }\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"eff4af3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"align\":\"space-between\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .elementor-element-populated {\\n        padding: 30px 100px 30px 70px;\\n    }\\n}\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c03326d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets Talk About Your Project.\",\"divider\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_typography_typography\":\"\"},\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"custom_css\":\"selector .aux-modern-heading-primary:after{\\n    content: \\\"\\\";\\n    width: 90px;\\n    height: 30px;\\n    background-image: url(\\\"data:image\\/svg+xml,%3Csvg xmlns=\'http:\\/\\/www.w3.org\\/2000\\/svg\' width=\'87.542\' height=\'32.602\' viewBox=\'0 0 87.542 32.602\'%3E%3Cpath id=\'arrow-right\' d=\'M58.542,17.419l-16.3,16.3-1.567-1.567L54.3,18.529H-29V16.313H54.3L40.674,2.685l1.567-1.567,16.3,16.3Z\' transform=\'translate(29 -1.118)\' fill=\'%23fff\'\\/%3E%3C\\/svg%3E\\\");\\n    background-repeat: no-repeat;\\n    display: block;\\n    margin-top: 15px;\\n}\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3d4392f\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text_normal_color\":\"#FFFFFF\",\"__globals__\":{\"btn_bg_normal_color\":\"\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"32\",\"bottom\":\"13\",\"left\":\"32\",\"isLinked\":\"\"},\"text_normal_typo_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__dynamic__\":[],\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"btn_bg_normal_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"d78342e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"81720b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"f8f7d0f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#A2A2A2B8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"250\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bfd5c16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"7723a9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone:\",\"divider\":\"\",\"description\":\"<p>+123 4567 890<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"b1eb78b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a1bfed3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address:\",\"divider\":\"\",\"description\":\"<p>Address 123 line 2<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"9b6fb07\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b59132f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email:\",\"divider\":\"\",\"description\":\"<p>info@yourdomain.com<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"description_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3d26ed2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b85fb6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social:\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#A2A2A2B8\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"__dynamic__\":[],\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"4d86c2f\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"face book -\",\"icon\":\"check-1\",\"_id\":\"b2bf13c\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"youtube -\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"ce345d3\"},{\"text_primary\":\"instagram \",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0f8c9ef\"},{\"text_primary\":\"twitter -\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"7a3baa5\"},{\"text_primary\":\"behance\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"44767d4\"}],\"direction\":\"horizontal\",\"list_column_gutter\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_weight\":\"300\",\"text1_typography_text_transform\":\"capitalize\",\"__dynamic__\":[],\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"433dc05\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9dda4b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"align\":\"space-between\",\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"a44d6a8\",\"elType\":\"widget\",\"settings\":{\"_element_width\":\"auto\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width_mobile\":\"inherit\",\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"logo_type\":\"secondary\"},\"elements\":[],\"widgetType\":\"aux_logo\"},{\"id\":\"917e788\",\"elType\":\"widget\",\"settings\":{\"copyright_text\":\"&copy; {{Y}} Amaeka Technologies\",\"copyright_color\":\"#5B5B5B99\",\"copyright_typo_typography\":\"custom\",\"copyright_typo_font_size\":{\"unit\":\"px\",\"size\":\"17\",\"sizes\":[]},\"copyright_typo_font_weight\":\"400\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"align_mobile\":\"center\",\"copyright_typo_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"aux_copyright\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"22f8327\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a71179f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2247,177,'_elementor_controls_usage','a:7:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:13:\"title_section\";a:2:{s:5:\"title\";i:5;s:7:\"divider\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:2:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:12:\"title_margin\";i:4;}s:25:\"description_style_section\";a:4:{s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:39:\"description_typography_font_size_mobile\";i:3;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:5;s:19:\"aux_animation_delay\";i:3;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:4:{s:24:\"btn_bg_normal_background\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:33:\"text_normal_typo_font_size_mobile\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;}s:33:\"aux_core_common_inview_transition\";a:2:{s:18:\"aux_animation_name\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:5:\"align\";i:2;s:19:\"_inline_size_tablet\";i:4;s:12:\"align_mobile\";i:1;s:12:\"_inline_size\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:1;s:13:\"margin_tablet\";i:4;s:14:\"padding_mobile\";i:4;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:1:{s:20:\"aux_animation_easing\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:5:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:4;s:7:\"z_index\";i:1;s:7:\"padding\";i:2;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:1;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:3:{s:9:\"direction\";i:1;s:18:\"list_column_gutter\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:18:\"list_style_section\";a:1:{s:9:\"connector\";i:1;}s:18:\"text_style_section\";a:5:{s:27:\"text1_typography_typography\";i:1;s:26:\"text1_typography_font_size\";i:1;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:1;s:33:\"text1_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_mobile\";i:1;}}s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:12:\"align_mobile\";i:1;s:9:\"logo_type\";i:1;}}}}s:13:\"aux_copyright\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:7:\"general\";a:2:{s:14:\"copyright_text\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_copyright\";a:5:{s:15:\"copyright_color\";i:1;s:25:\"copyright_typo_typography\";i:1;s:24:\"copyright_typo_font_size\";i:1;s:26:\"copyright_typo_font_weight\";i:1;s:31:\"copyright_typo_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:23:\"_element_vertical_align\";i:1;s:21:\"_element_width_mobile\";i:1;}}}}}'),(2248,177,'_elementor_page_assets','a:0:{}'),(2266,180,'_wp_page_template','templates/page-builder-content.php'),(2267,180,'_elementor_edit_mode','builder'),(2268,180,'_elementor_template_type','wp-page'),(2269,180,'_elementor_version','3.0.15'),(2270,180,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"500\",\"prefix\":\"+\",\"title\":\"Complete project\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Satisfy client\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"35\",\"title\":\"Project Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"261\",\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interior\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2271,180,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2273,181,'_wp_page_template','templates/page-builder-content.php'),(2274,181,'_elementor_edit_mode','builder'),(2275,181,'_elementor_template_type','wp-page'),(2276,181,'_elementor_version','3.0.15'),(2277,181,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"500\",\"prefix\":\"+\",\"title\":\"Complete project\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Satisfy client\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"35\",\"title\":\"Project Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"261\",\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interior\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2278,181,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2280,182,'_wp_page_template','templates/page-builder-content.php'),(2281,182,'_elementor_edit_mode','builder'),(2282,182,'_elementor_template_type','wp-page'),(2283,182,'_elementor_version','3.0.15'),(2284,182,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"500\",\"prefix\":\"+\",\"title\":\"Complete project\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Satisfy client\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"35\",\"title\":\"Project Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"261\",\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interior\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2285,182,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2287,73,'_elementor_page_assets','a:0:{}'),(2288,183,'_wp_page_template','templates/page-builder-content.php'),(2289,183,'_elementor_edit_mode','builder'),(2290,183,'_elementor_template_type','wp-page'),(2291,183,'_elementor_version','3.5.6'),(2292,183,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"500\",\"prefix\":\"+\",\"title\":\"Complete project\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Satisfy client\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"35\",\"title\":\"Project Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"261\",\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interior\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2293,183,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2294,183,'_elementor_page_assets','a:0:{}'),(2295,184,'_wp_page_template','templates/page-builder-content.php'),(2296,184,'_elementor_edit_mode','builder'),(2297,184,'_elementor_template_type','wp-page'),(2298,184,'_elementor_version','3.5.6'),(2299,184,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"500\",\"prefix\":\"+\",\"title\":\"Complete project\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Satisfy client\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"35\",\"title\":\"Project Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":\"261\",\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interior\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2300,184,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2301,184,'_elementor_page_assets','a:0:{}'),(2302,185,'_wp_page_template','templates/page-builder-content.php'),(2303,185,'_elementor_edit_mode','builder'),(2304,185,'_elementor_template_type','wp-page'),(2305,185,'_elementor_version','3.5.6'),(2306,185,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interior\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2307,185,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2308,185,'_elementor_page_assets','a:0:{}'),(2313,70,'_edit_lock','1647249770:1'),(2318,187,'_wp_page_template','templates/page-builder-content.php'),(2319,187,'_elementor_edit_mode','builder'),(2320,187,'_elementor_template_type','wp-page'),(2321,187,'_elementor_version','3.0.15'),(2322,187,'_elementor_data','[{\"id\":\"9e69f39\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"80c3641\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"63247ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Ready to start project \",\"title_secondary_highlight\":\"let\'s talk\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"420\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"79ea790\",\"elType\":\"widget\",\"settings\":{\"type\":\"cf7\",\"cf7_shortcode\":\"[contact-form-7 id=\\\"64\\\" title=\\\"contact form\\\"]\",\"general_input_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"general_input_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"general_input_border_border\":\"solid\",\"general_input_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"general_input_border_color\":\"#3E3E3E\",\"placeholder_typography_typography\":\"custom\",\"placeholder_typography_font_family\":\"Mukta\",\"placeholder_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"placeholder_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"placeholder_typography_font_weight\":\"300\",\"placeholder_typography_text_transform\":\"capitalize\",\"placeholder_typography_font_style\":\"normal\",\"placeholder_color\":\"#3E3E3E\",\"textarea_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"textarea_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"textarea_border_border\":\"solid\",\"textarea_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"textarea_border_color\":\"#3E3E3E\",\"textarea_placeholder_typography_typography\":\"custom\",\"textarea_placeholder_typography_font_family\":\"Mukta\",\"textarea_placeholder_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"textarea_placeholder_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"textarea_placeholder_typography_font_weight\":\"300\",\"textarea_placeholder_typography_text_transform\":\"capitalize\",\"textarea_placeholder_typography_font_style\":\"normal\",\"textarea_placeholder_color\":\"#3E3E3E\",\"submit_input_typography_typography\":\"custom\",\"submit_input_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"submit_input_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"submit_input_typography_font_weight\":\"700\",\"submit_input_typography_text_transform\":\"uppercase\",\"submit_input_color\":\"#FFFFFF\",\"submit_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"submit_input_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":\"\"},\"submit_input_background_background\":\"classic\",\"submit_input_background_color\":\"#FF7E44\",\"submit_input_background_hover_background\":\"classic\",\"submit_input_background_hover_color\":\"#191919\",\"custom_css\":\"selector input[type=\'submit\']{\\n    float: right;\\n}\\nselector textarea{\\n    height: 40px;\\n    min-height: 40px;\\n}\",\"__globals__\":{\"submit_input_background_color\":\"globals\\/colors?id=secondary\",\"submit_input_color\":\"globals\\/colors?id=accent\",\"submit_input_background_hover_color\":\"globals\\/colors?id=primary\",\"textarea_placeholder_typography_typography\":\"\",\"placeholder_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2300,\"aux_animation_delay\":300},\"elements\":[],\"widgetType\":\"aux_contact_form\"},{\"id\":\"cbe8bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"206\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(25, 25, 25, 0.12);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:150px;\\n    }\\n    selector{\\n        bottom:-90px;\\n        left:-150px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_right\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-115\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-180\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"},{\"id\":\"18ff087\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"5b2a60e\",\"elType\":\"widget\",\"settings\":{\"latitude\":\"54\",\"longitude\":\"16\",\"height\":\"720\",\"style\":\"[\\n    {\\n        \\\"featureType\\\": \\\"all\\\",\\n        \\\"elementType\\\": \\\"labels.text.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"saturation\\\": 36\\n            },\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 40\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"all\\\",\\n        \\\"elementType\\\": \\\"labels.text.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"visibility\\\": \\\"on\\\"\\n            },\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 16\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"all\\\",\\n        \\\"elementType\\\": \\\"labels.icon\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"visibility\\\": \\\"off\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"administrative\\\",\\n        \\\"elementType\\\": \\\"geometry.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 20\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"administrative\\\",\\n        \\\"elementType\\\": \\\"geometry.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 17\\n            },\\n            {\\n                \\\"weight\\\": 1.2\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"landscape\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 20\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"poi\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 21\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.highway\\\",\\n        \\\"elementType\\\": \\\"geometry.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 17\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.highway\\\",\\n        \\\"elementType\\\": \\\"geometry.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 29\\n            },\\n            {\\n                \\\"weight\\\": 0.2\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.arterial\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 18\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 16\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"geometry.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#272727\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"labels.text.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#bababa\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"labels.text.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"weight\\\": \\\"3.66\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"transit\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 19\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"water\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 17\\n            }\\n        ]\\n    }\\n]\",\"show_mapcontrols\":\"\",\"zoom\":\"17\",\"attach_id\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/wp-content\\/uploads\\/2020\\/10\\/Untitled.png\",\"id\":\"1134\"},\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_gmap\"},{\"id\":\"3335bbe\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        padding: 0px 20px 0px 20px;\\n    }\\n}\"},\"elements\":[{\"id\":\"35b9aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bdf31c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone:\",\"divider\":\"\",\"description\":\"<p>+123 4567 890<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#FFFFFFA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 6px;\\n    height: 6px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8028f19\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1f9d226\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address:\",\"divider\":\"\",\"description\":\"<p>Patricia C. Amedee 41 WaldeckGrapevine Nashville, TX 76<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#FFFFFFA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_width\":{\"unit\":\"px\",\"size\":\"235\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 6px;\\n    height: 6px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fc49959\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7d296fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email:\",\"divider\":\"\",\"description\":\"<p>info@yourdomain.com<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#FFFFFFA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 6px;\\n    height: 6px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2323,187,'_elementor_controls_usage','a:5:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:4:{s:5:\"title\";i:5;s:9:\"title_tag\";i:1;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:4;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:4;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:5;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:4;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:1;}s:20:\"title2_style_heading\";a:11:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:7:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:24:\"title2_highlighted_color\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:1;s:13:\"divider_width\";i:1;s:14:\"divider_margin\";i:1;s:13:\"divider_color\";i:1;}s:25:\"description_style_section\";a:7:{s:17:\"description_color\";i:4;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:1;s:34:\"description_typography_font_weight\";i:1;s:39:\"description_typography_font_size_tablet\";i:4;s:17:\"description_width\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:5;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:3;}s:14:\"_section_style\";a:1:{s:14:\"_margin_tablet\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:16:\"aux_contact_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"contact_section\";a:2:{s:4:\"type\";i:1;s:13:\"cf7_shortcode\";i:1;}}s:5:\"style\";a:5:{s:21:\"general_input_section\";a:5:{s:21:\"general_input_padding\";i:1;s:20:\"general_input_margin\";i:1;s:27:\"general_input_border_border\";i:1;s:26:\"general_input_border_width\";i:1;s:26:\"general_input_border_color\";i:1;}s:19:\"placeholder_section\";a:8:{s:33:\"placeholder_typography_typography\";i:1;s:34:\"placeholder_typography_font_family\";i:1;s:32:\"placeholder_typography_font_size\";i:1;s:39:\"placeholder_typography_font_size_mobile\";i:1;s:34:\"placeholder_typography_font_weight\";i:1;s:37:\"placeholder_typography_text_transform\";i:1;s:33:\"placeholder_typography_font_style\";i:1;s:17:\"placeholder_color\";i:1;}s:16:\"textarea_section\";a:5:{s:16:\"textarea_padding\";i:1;s:15:\"textarea_margin\";i:1;s:22:\"textarea_border_border\";i:1;s:21:\"textarea_border_width\";i:1;s:21:\"textarea_border_color\";i:1;}s:28:\"textarea_placeholder_section\";a:8:{s:42:\"textarea_placeholder_typography_typography\";i:1;s:43:\"textarea_placeholder_typography_font_family\";i:1;s:41:\"textarea_placeholder_typography_font_size\";i:1;s:48:\"textarea_placeholder_typography_font_size_mobile\";i:1;s:43:\"textarea_placeholder_typography_font_weight\";i:1;s:46:\"textarea_placeholder_typography_text_transform\";i:1;s:42:\"textarea_placeholder_typography_font_style\";i:1;s:26:\"textarea_placeholder_color\";i:1;}s:20:\"submit_input_section\";a:12:{s:34:\"submit_input_typography_typography\";i:1;s:33:\"submit_input_typography_font_size\";i:1;s:40:\"submit_input_typography_font_size_mobile\";i:1;s:35:\"submit_input_typography_font_weight\";i:1;s:38:\"submit_input_typography_text_transform\";i:1;s:18:\"submit_input_color\";i:1;s:20:\"submit_input_padding\";i:1;s:27:\"submit_input_padding_mobile\";i:1;s:34:\"submit_input_background_background\";i:1;s:29:\"submit_input_background_color\";i:1;s:40:\"submit_input_background_hover_background\";i:1;s:35:\"submit_input_background_hover_color\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:16:\"content_position\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:3;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}}}}s:8:\"aux_gmap\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:11:\"map_section\";a:3:{s:8:\"latitude\";i:1;s:9:\"longitude\";i:1;s:9:\"attach_id\";i:1;}}s:5:\"style\";a:1:{s:15:\"general_section\";a:4:{s:6:\"height\";i:1;s:5:\"style\";i:1;s:16:\"show_mapcontrols\";i:1;s:4:\"zoom\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}}'),(2325,188,'_wp_page_template','templates/page-builder-content.php'),(2326,188,'_elementor_edit_mode','builder'),(2327,188,'_elementor_template_type','wp-page'),(2328,188,'_elementor_version','3.0.15'),(2329,188,'_elementor_data','[{\"id\":\"9e69f39\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"80c3641\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"63247ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Ready to start project \",\"title_secondary_highlight\":\"let\'s talk\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"420\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"79ea790\",\"elType\":\"widget\",\"settings\":{\"type\":\"cf7\",\"cf7_shortcode\":\"[contact-form-7 id=\\\"64\\\" title=\\\"contact form\\\"]\",\"general_input_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"general_input_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"general_input_border_border\":\"solid\",\"general_input_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"general_input_border_color\":\"#3E3E3E\",\"placeholder_typography_typography\":\"custom\",\"placeholder_typography_font_family\":\"Mukta\",\"placeholder_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"placeholder_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"placeholder_typography_font_weight\":\"300\",\"placeholder_typography_text_transform\":\"capitalize\",\"placeholder_typography_font_style\":\"normal\",\"placeholder_color\":\"#3E3E3E\",\"textarea_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"textarea_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"textarea_border_border\":\"solid\",\"textarea_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"textarea_border_color\":\"#3E3E3E\",\"textarea_placeholder_typography_typography\":\"custom\",\"textarea_placeholder_typography_font_family\":\"Mukta\",\"textarea_placeholder_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"textarea_placeholder_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"textarea_placeholder_typography_font_weight\":\"300\",\"textarea_placeholder_typography_text_transform\":\"capitalize\",\"textarea_placeholder_typography_font_style\":\"normal\",\"textarea_placeholder_color\":\"#3E3E3E\",\"submit_input_typography_typography\":\"custom\",\"submit_input_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"submit_input_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"submit_input_typography_font_weight\":\"700\",\"submit_input_typography_text_transform\":\"uppercase\",\"submit_input_color\":\"#FFFFFF\",\"submit_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"submit_input_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":\"\"},\"submit_input_background_background\":\"classic\",\"submit_input_background_color\":\"#FF7E44\",\"submit_input_background_hover_background\":\"classic\",\"submit_input_background_hover_color\":\"#191919\",\"custom_css\":\"selector input[type=\'submit\']{\\n    float: right;\\n}\\nselector textarea{\\n    height: 40px;\\n    min-height: 40px;\\n}\",\"__globals__\":{\"submit_input_background_color\":\"globals\\/colors?id=secondary\",\"submit_input_color\":\"globals\\/colors?id=accent\",\"submit_input_background_hover_color\":\"globals\\/colors?id=primary\",\"textarea_placeholder_typography_typography\":\"\",\"placeholder_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2300,\"aux_animation_delay\":300},\"elements\":[],\"widgetType\":\"aux_contact_form\"},{\"id\":\"cbe8bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"206\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(25, 25, 25, 0.12);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:150px;\\n    }\\n    selector{\\n        bottom:-90px;\\n        left:-150px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_right\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-115\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-180\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"},{\"id\":\"18ff087\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"5b2a60e\",\"elType\":\"widget\",\"settings\":{\"latitude\":\"54\",\"longitude\":\"16\",\"height\":\"720\",\"style\":\"[\\n    {\\n        \\\"featureType\\\": \\\"all\\\",\\n        \\\"elementType\\\": \\\"labels.text.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"saturation\\\": 36\\n            },\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 40\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"all\\\",\\n        \\\"elementType\\\": \\\"labels.text.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"visibility\\\": \\\"on\\\"\\n            },\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 16\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"all\\\",\\n        \\\"elementType\\\": \\\"labels.icon\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"visibility\\\": \\\"off\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"administrative\\\",\\n        \\\"elementType\\\": \\\"geometry.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 20\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"administrative\\\",\\n        \\\"elementType\\\": \\\"geometry.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 17\\n            },\\n            {\\n                \\\"weight\\\": 1.2\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"landscape\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 20\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"poi\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 21\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.highway\\\",\\n        \\\"elementType\\\": \\\"geometry.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 17\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.highway\\\",\\n        \\\"elementType\\\": \\\"geometry.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 29\\n            },\\n            {\\n                \\\"weight\\\": 0.2\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.arterial\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 18\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 16\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"geometry.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#272727\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"labels.text.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#bababa\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"labels.text.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"weight\\\": \\\"3.66\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"transit\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 19\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"water\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 17\\n            }\\n        ]\\n    }\\n]\",\"show_mapcontrols\":\"\",\"zoom\":\"17\",\"attach_id\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/wp-content\\/uploads\\/2020\\/10\\/Untitled.png\",\"id\":\"1134\"},\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_gmap\"},{\"id\":\"3335bbe\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        padding: 0px 20px 0px 20px;\\n    }\\n}\"},\"elements\":[{\"id\":\"35b9aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bdf31c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone:\",\"divider\":\"\",\"description\":\"<p>+123 4567 890<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#FFFFFFA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 6px;\\n    height: 6px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8028f19\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1f9d226\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address:\",\"divider\":\"\",\"description\":\"<p>Patricia C. Amedee 41 WaldeckGrapevine Nashville, TX 76<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#FFFFFFA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_width\":{\"unit\":\"px\",\"size\":\"235\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 6px;\\n    height: 6px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fc49959\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7d296fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email:\",\"divider\":\"\",\"description\":\"<p>info@yourdomain.com<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#FFFFFFA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 6px;\\n    height: 6px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2330,188,'_elementor_controls_usage','a:5:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:4:{s:5:\"title\";i:5;s:9:\"title_tag\";i:1;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:4;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:4;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:5;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:4;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:1;}s:20:\"title2_style_heading\";a:11:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:7:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:24:\"title2_highlighted_color\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:1;s:13:\"divider_width\";i:1;s:14:\"divider_margin\";i:1;s:13:\"divider_color\";i:1;}s:25:\"description_style_section\";a:7:{s:17:\"description_color\";i:4;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:1;s:34:\"description_typography_font_weight\";i:1;s:39:\"description_typography_font_size_tablet\";i:4;s:17:\"description_width\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:5;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:3;}s:14:\"_section_style\";a:1:{s:14:\"_margin_tablet\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:16:\"aux_contact_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"contact_section\";a:2:{s:4:\"type\";i:1;s:13:\"cf7_shortcode\";i:1;}}s:5:\"style\";a:5:{s:21:\"general_input_section\";a:5:{s:21:\"general_input_padding\";i:1;s:20:\"general_input_margin\";i:1;s:27:\"general_input_border_border\";i:1;s:26:\"general_input_border_width\";i:1;s:26:\"general_input_border_color\";i:1;}s:19:\"placeholder_section\";a:8:{s:33:\"placeholder_typography_typography\";i:1;s:34:\"placeholder_typography_font_family\";i:1;s:32:\"placeholder_typography_font_size\";i:1;s:39:\"placeholder_typography_font_size_mobile\";i:1;s:34:\"placeholder_typography_font_weight\";i:1;s:37:\"placeholder_typography_text_transform\";i:1;s:33:\"placeholder_typography_font_style\";i:1;s:17:\"placeholder_color\";i:1;}s:16:\"textarea_section\";a:5:{s:16:\"textarea_padding\";i:1;s:15:\"textarea_margin\";i:1;s:22:\"textarea_border_border\";i:1;s:21:\"textarea_border_width\";i:1;s:21:\"textarea_border_color\";i:1;}s:28:\"textarea_placeholder_section\";a:8:{s:42:\"textarea_placeholder_typography_typography\";i:1;s:43:\"textarea_placeholder_typography_font_family\";i:1;s:41:\"textarea_placeholder_typography_font_size\";i:1;s:48:\"textarea_placeholder_typography_font_size_mobile\";i:1;s:43:\"textarea_placeholder_typography_font_weight\";i:1;s:46:\"textarea_placeholder_typography_text_transform\";i:1;s:42:\"textarea_placeholder_typography_font_style\";i:1;s:26:\"textarea_placeholder_color\";i:1;}s:20:\"submit_input_section\";a:12:{s:34:\"submit_input_typography_typography\";i:1;s:33:\"submit_input_typography_font_size\";i:1;s:40:\"submit_input_typography_font_size_mobile\";i:1;s:35:\"submit_input_typography_font_weight\";i:1;s:38:\"submit_input_typography_text_transform\";i:1;s:18:\"submit_input_color\";i:1;s:20:\"submit_input_padding\";i:1;s:27:\"submit_input_padding_mobile\";i:1;s:34:\"submit_input_background_background\";i:1;s:29:\"submit_input_background_color\";i:1;s:40:\"submit_input_background_hover_background\";i:1;s:35:\"submit_input_background_hover_color\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:16:\"content_position\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:3;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}}}}s:8:\"aux_gmap\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:11:\"map_section\";a:3:{s:8:\"latitude\";i:1;s:9:\"longitude\";i:1;s:9:\"attach_id\";i:1;}}s:5:\"style\";a:1:{s:15:\"general_section\";a:4:{s:6:\"height\";i:1;s:5:\"style\";i:1;s:16:\"show_mapcontrols\";i:1;s:4:\"zoom\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}}'),(2332,189,'_wp_page_template','templates/page-builder-content.php'),(2333,189,'_elementor_edit_mode','builder'),(2334,189,'_elementor_template_type','wp-page'),(2335,189,'_elementor_version','3.0.15'),(2336,189,'_elementor_data','[{\"id\":\"9e69f39\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"80c3641\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#E9E9E9\",\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":\"1\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"63247ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Ready to start project \",\"title_secondary_highlight\":\"let\'s talk\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"420\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"79ea790\",\"elType\":\"widget\",\"settings\":{\"type\":\"cf7\",\"cf7_shortcode\":\"[contact-form-7 id=\\\"64\\\" title=\\\"contact form\\\"]\",\"general_input_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"general_input_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"general_input_border_border\":\"solid\",\"general_input_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"general_input_border_color\":\"#3E3E3E\",\"placeholder_typography_typography\":\"custom\",\"placeholder_typography_font_family\":\"Mukta\",\"placeholder_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"placeholder_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"placeholder_typography_font_weight\":\"300\",\"placeholder_typography_text_transform\":\"capitalize\",\"placeholder_typography_font_style\":\"normal\",\"placeholder_color\":\"#3E3E3E\",\"textarea_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"textarea_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"textarea_border_border\":\"solid\",\"textarea_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"textarea_border_color\":\"#3E3E3E\",\"textarea_placeholder_typography_typography\":\"custom\",\"textarea_placeholder_typography_font_family\":\"Mukta\",\"textarea_placeholder_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"textarea_placeholder_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"textarea_placeholder_typography_font_weight\":\"300\",\"textarea_placeholder_typography_text_transform\":\"capitalize\",\"textarea_placeholder_typography_font_style\":\"normal\",\"textarea_placeholder_color\":\"#3E3E3E\",\"submit_input_typography_typography\":\"custom\",\"submit_input_typography_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"submit_input_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"submit_input_typography_font_weight\":\"700\",\"submit_input_typography_text_transform\":\"uppercase\",\"submit_input_color\":\"#FFFFFF\",\"submit_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"submit_input_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":\"\"},\"submit_input_background_background\":\"classic\",\"submit_input_background_color\":\"#FF7E44\",\"submit_input_background_hover_background\":\"classic\",\"submit_input_background_hover_color\":\"#191919\",\"custom_css\":\"selector input[type=\'submit\']{\\n    float: right;\\n}\\nselector textarea{\\n    height: 40px;\\n    min-height: 40px;\\n}\",\"__globals__\":{\"submit_input_background_color\":\"globals\\/colors?id=secondary\",\"submit_input_color\":\"globals\\/colors?id=accent\",\"submit_input_background_hover_color\":\"globals\\/colors?id=primary\",\"textarea_placeholder_typography_typography\":\"\",\"placeholder_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2300,\"aux_animation_delay\":300},\"elements\":[],\"widgetType\":\"aux_contact_form\"},{\"id\":\"cbe8bc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"206\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(25, 25, 25, 0.12);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:150px;\\n    }\\n    selector{\\n        bottom:-90px;\\n        left:-150px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_right\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-115\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"-90\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-180\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"},{\"id\":\"18ff087\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"top\",\"background_background\":\"classic\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"5b2a60e\",\"elType\":\"widget\",\"settings\":{\"latitude\":\"54\",\"longitude\":\"16\",\"height\":\"720\",\"style\":\"[\\n    {\\n        \\\"featureType\\\": \\\"all\\\",\\n        \\\"elementType\\\": \\\"labels.text.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"saturation\\\": 36\\n            },\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 40\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"all\\\",\\n        \\\"elementType\\\": \\\"labels.text.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"visibility\\\": \\\"on\\\"\\n            },\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 16\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"all\\\",\\n        \\\"elementType\\\": \\\"labels.icon\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"visibility\\\": \\\"off\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"administrative\\\",\\n        \\\"elementType\\\": \\\"geometry.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 20\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"administrative\\\",\\n        \\\"elementType\\\": \\\"geometry.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 17\\n            },\\n            {\\n                \\\"weight\\\": 1.2\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"landscape\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 20\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"poi\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 21\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.highway\\\",\\n        \\\"elementType\\\": \\\"geometry.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 17\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.highway\\\",\\n        \\\"elementType\\\": \\\"geometry.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 29\\n            },\\n            {\\n                \\\"weight\\\": 0.2\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.arterial\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 18\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 16\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"geometry.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#272727\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"labels.text.fill\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#bababa\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"road.local\\\",\\n        \\\"elementType\\\": \\\"labels.text.stroke\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"weight\\\": \\\"3.66\\\"\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"transit\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 19\\n            }\\n        ]\\n    },\\n    {\\n        \\\"featureType\\\": \\\"water\\\",\\n        \\\"elementType\\\": \\\"geometry\\\",\\n        \\\"stylers\\\": [\\n            {\\n                \\\"color\\\": \\\"#000000\\\"\\n            },\\n            {\\n                \\\"lightness\\\": 17\\n            }\\n        ]\\n    }\\n]\",\"show_mapcontrols\":\"\",\"zoom\":\"17\",\"attach_id\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/wp-content\\/uploads\\/2020\\/10\\/Untitled.png\",\"id\":\"1134\"},\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_gmap\"},{\"id\":\"3335bbe\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        padding: 0px 20px 0px 20px;\\n    }\\n}\"},\"elements\":[{\"id\":\"35b9aa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bdf31c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Phone:\",\"divider\":\"\",\"description\":\"<p>+123 4567 890<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#FFFFFFA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 6px;\\n    height: 6px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8028f19\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1f9d226\",\"elType\":\"widget\",\"settings\":{\"title\":\"Address:\",\"divider\":\"\",\"description\":\"<p>Asdress 123,line 2<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#FFFFFFA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_width\":{\"unit\":\"px\",\"size\":\"235\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 6px;\\n    height: 6px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fc49959\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7d296fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Email:\",\"divider\":\"\",\"description\":\"<p>info@yourdomain.com<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#FFFFFFA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 6px;\\n    height: 6px;\\n    background-color: var( --e-global-color-accent );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2337,189,'_elementor_controls_usage','a:5:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:4:{s:5:\"title\";i:5;s:9:\"title_tag\";i:1;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:4;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:4;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:5;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:4;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:1;}s:20:\"title2_style_heading\";a:11:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:7:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:24:\"title2_highlighted_color\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:1;s:13:\"divider_width\";i:1;s:14:\"divider_margin\";i:1;s:13:\"divider_color\";i:1;}s:25:\"description_style_section\";a:7:{s:17:\"description_color\";i:4;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:1;s:34:\"description_typography_font_weight\";i:1;s:39:\"description_typography_font_size_tablet\";i:4;s:17:\"description_width\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:5;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:3;}s:14:\"_section_style\";a:1:{s:14:\"_margin_tablet\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:16:\"aux_contact_form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"contact_section\";a:2:{s:4:\"type\";i:1;s:13:\"cf7_shortcode\";i:1;}}s:5:\"style\";a:5:{s:21:\"general_input_section\";a:5:{s:21:\"general_input_padding\";i:1;s:20:\"general_input_margin\";i:1;s:27:\"general_input_border_border\";i:1;s:26:\"general_input_border_width\";i:1;s:26:\"general_input_border_color\";i:1;}s:19:\"placeholder_section\";a:8:{s:33:\"placeholder_typography_typography\";i:1;s:34:\"placeholder_typography_font_family\";i:1;s:32:\"placeholder_typography_font_size\";i:1;s:39:\"placeholder_typography_font_size_mobile\";i:1;s:34:\"placeholder_typography_font_weight\";i:1;s:37:\"placeholder_typography_text_transform\";i:1;s:33:\"placeholder_typography_font_style\";i:1;s:17:\"placeholder_color\";i:1;}s:16:\"textarea_section\";a:5:{s:16:\"textarea_padding\";i:1;s:15:\"textarea_margin\";i:1;s:22:\"textarea_border_border\";i:1;s:21:\"textarea_border_width\";i:1;s:21:\"textarea_border_color\";i:1;}s:28:\"textarea_placeholder_section\";a:8:{s:42:\"textarea_placeholder_typography_typography\";i:1;s:43:\"textarea_placeholder_typography_font_family\";i:1;s:41:\"textarea_placeholder_typography_font_size\";i:1;s:48:\"textarea_placeholder_typography_font_size_mobile\";i:1;s:43:\"textarea_placeholder_typography_font_weight\";i:1;s:46:\"textarea_placeholder_typography_text_transform\";i:1;s:42:\"textarea_placeholder_typography_font_style\";i:1;s:26:\"textarea_placeholder_color\";i:1;}s:20:\"submit_input_section\";a:12:{s:34:\"submit_input_typography_typography\";i:1;s:33:\"submit_input_typography_font_size\";i:1;s:40:\"submit_input_typography_font_size_mobile\";i:1;s:35:\"submit_input_typography_font_weight\";i:1;s:38:\"submit_input_typography_text_transform\";i:1;s:18:\"submit_input_color\";i:1;s:20:\"submit_input_padding\";i:1;s:27:\"submit_input_padding_mobile\";i:1;s:34:\"submit_input_background_background\";i:1;s:29:\"submit_input_background_color\";i:1;s:40:\"submit_input_background_hover_background\";i:1;s:35:\"submit_input_background_hover_color\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:16:\"content_position\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:3;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}}}}s:8:\"aux_gmap\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:11:\"map_section\";a:3:{s:8:\"latitude\";i:1;s:9:\"longitude\";i:1;s:9:\"attach_id\";i:1;}}s:5:\"style\";a:1:{s:15:\"general_section\";a:4:{s:6:\"height\";i:1;s:5:\"style\";i:1;s:16:\"show_mapcontrols\";i:1;s:4:\"zoom\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:8:\"overflow\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}}'),(2339,70,'_elementor_page_assets','a:0:{}'),(2353,191,'_wp_page_template','default'),(2354,191,'_elementor_edit_mode','builder'),(2355,191,'_elementor_template_type','wp-page'),(2356,191,'_elementor_version','3.5.6'),(2357,191,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2358,191,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2359,191,'_elementor_page_assets','a:0:{}'),(2360,192,'_wp_page_template','default'),(2361,192,'_elementor_edit_mode','builder'),(2362,192,'_elementor_template_type','wp-page'),(2363,192,'_elementor_version','3.5.6'),(2364,192,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2365,192,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2366,192,'_elementor_page_assets','a:0:{}'),(2367,193,'_wp_page_template','default');
INSERT INTO `wp_postmeta` VALUES (2368,193,'_elementor_edit_mode','builder'),(2369,193,'_elementor_template_type','wp-page'),(2370,193,'_elementor_version','3.5.6'),(2371,193,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2372,193,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2373,193,'_elementor_page_assets','a:0:{}'),(2375,194,'_wp_page_template','default'),(2376,194,'_elementor_edit_mode','builder'),(2377,194,'_elementor_template_type','wp-page'),(2378,194,'_elementor_version','3.5.6'),(2379,194,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2380,194,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2381,194,'_elementor_page_assets','a:0:{}'),(2383,195,'_wp_page_template','default'),(2384,195,'_elementor_edit_mode','builder'),(2385,195,'_elementor_template_type','wp-page'),(2386,195,'_elementor_version','3.5.6'),(2387,195,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2388,195,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2389,195,'_elementor_page_assets','a:0:{}'),(2391,196,'_wp_page_template','default'),(2392,196,'_elementor_edit_mode','builder'),(2393,196,'_elementor_template_type','wp-page'),(2394,196,'_elementor_version','3.5.6'),(2395,196,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2396,196,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2397,196,'_elementor_page_assets','a:0:{}'),(2400,197,'_wp_page_template','templates/page-builder-content.php'),(2401,197,'_elementor_edit_mode','builder'),(2402,197,'_elementor_template_type','wp-page'),(2403,197,'_elementor_version','3.5.6'),(2404,197,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interior\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2405,197,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2406,197,'_elementor_page_assets','a:0:{}'),(2407,198,'_wp_page_template','templates/page-builder-content.php'),(2408,198,'_elementor_edit_mode','builder'),(2409,198,'_elementor_template_type','wp-page'),(2410,198,'_elementor_version','3.5.6'),(2411,198,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interior\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2412,198,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2413,198,'_elementor_page_assets','a:0:{}'),(2414,199,'_wp_page_template','templates/page-builder-content.php'),(2415,199,'_elementor_edit_mode','builder'),(2416,199,'_elementor_template_type','wp-page'),(2417,199,'_elementor_version','3.5.6'),(2418,199,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automate\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2419,199,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2420,199,'_elementor_page_assets','a:0:{}'),(2429,201,'_wp_page_template','templates/page-builder-content.php'),(2430,201,'_elementor_edit_mode','builder'),(2431,201,'_elementor_template_type','wp-page'),(2432,201,'_elementor_version','3.5.6'),(2433,201,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automate\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2434,201,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2435,201,'_elementor_page_assets','a:0:{}'),(2437,73,'_edit_last','1'),(2438,73,'_elementor_edit_mode','builder'),(2446,203,'_wp_page_template','templates/page-builder-content.php'),(2447,203,'_elementor_template_type','wp-page'),(2448,203,'_elementor_version','3.5.6'),(2449,203,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automate\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2450,203,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2451,203,'_elementor_page_assets','a:0:{}'),(2452,203,'_elementor_edit_mode','builder'),(2453,204,'_wp_page_template','templates/page-builder-content.php'),(2454,204,'_elementor_template_type','wp-page'),(2455,204,'_elementor_version','3.5.6'),(2456,204,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automate\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2457,204,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2458,204,'_elementor_page_assets','a:0:{}'),(2459,204,'_elementor_edit_mode','builder'),(2460,205,'_wp_page_template','templates/page-builder-content.php'),(2461,205,'_elementor_template_type','wp-page'),(2462,205,'_elementor_version','3.5.6'),(2463,205,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automate\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_secondary_before\":\"Over\",\"title_secondary_highlight\":\"All\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2464,205,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2465,205,'_elementor_page_assets','a:0:{}'),(2466,205,'_elementor_edit_mode','builder'),(2468,206,'_wp_page_template','templates/page-builder-content.php'),(2469,206,'_elementor_template_type','wp-page'),(2470,206,'_elementor_version','3.5.6');
INSERT INTO `wp_postmeta` VALUES (2471,206,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automate\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_secondary_before\":\"Over\",\"title_secondary_highlight\":\"All\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2472,206,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2473,206,'_elementor_page_assets','a:0:{}'),(2474,206,'_elementor_edit_mode','builder'),(2476,207,'_wp_page_template','templates/page-builder-content.php'),(2477,207,'_elementor_template_type','wp-page'),(2478,207,'_elementor_version','3.5.6'),(2479,207,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automate\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_secondary_before\":\"Over\",\"title_secondary_highlight\":\"All\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2480,207,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2481,207,'_elementor_page_assets','a:0:{}'),(2482,207,'_elementor_edit_mode','builder'),(2484,208,'_wp_page_template','templates/page-builder-content.php'),(2485,208,'_elementor_template_type','wp-page'),(2486,208,'_elementor_version','3.5.6'),(2487,208,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automate\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2488,208,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2489,208,'_elementor_page_assets','a:0:{}'),(2490,208,'_elementor_edit_mode','builder'),(2492,209,'_wp_page_template','templates/page-builder-content.php'),(2493,209,'_elementor_template_type','wp-page'),(2494,209,'_elementor_version','3.5.6'),(2495,209,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automate\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2496,209,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2497,209,'_elementor_page_assets','a:0:{}'),(2498,209,'_elementor_edit_mode','builder'),(2499,210,'_wp_page_template','templates/page-builder-content.php'),(2500,210,'_elementor_template_type','wp-page'),(2501,210,'_elementor_version','3.5.6'),(2502,210,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automate\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Architect\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2503,210,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2504,210,'_elementor_page_assets','a:0:{}'),(2505,210,'_elementor_edit_mode','builder'),(2506,211,'_wp_page_template','templates/page-builder-content.php'),(2507,211,'_elementor_template_type','wp-page'),(2508,211,'_elementor_version','3.5.6'),(2509,211,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automate\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2510,211,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2511,211,'_elementor_page_assets','a:0:{}'),(2512,211,'_elementor_edit_mode','builder'),(2516,212,'_wp_page_template','templates/page-builder-content.php'),(2517,212,'_elementor_template_type','wp-page'),(2518,212,'_elementor_version','3.5.6'),(2519,212,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automate\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2520,212,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2521,212,'_elementor_page_assets','a:0:{}'),(2522,212,'_elementor_edit_mode','builder'),(2524,213,'_wp_page_template','templates/page-builder-content.php'),(2525,213,'_elementor_template_type','wp-page'),(2526,213,'_elementor_version','3.5.6'),(2527,213,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automate\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2528,213,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2529,213,'_elementor_page_assets','a:0:{}'),(2530,213,'_elementor_edit_mode','builder'),(2532,214,'_wp_page_template','templates/page-builder-content.php'),(2533,214,'_elementor_template_type','wp-page'),(2534,214,'_elementor_version','3.5.6'),(2535,214,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2536,214,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2537,214,'_elementor_page_assets','a:0:{}'),(2538,214,'_elementor_edit_mode','builder'),(2557,56,'_edit_lock','1647501222:1'),(2559,56,'_edit_last','1'),(2560,56,'_thumbnail_id2','18'),(2564,219,'_wp_page_template','default'),(2565,219,'_elementor_edit_mode','builder'),(2566,219,'_elementor_template_type','wp-page'),(2567,219,'_elementor_version','3.5.6'),(2568,219,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2569,219,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2570,219,'_elementor_page_assets','a:0:{}'),(2572,220,'_wp_page_template','default'),(2573,220,'_elementor_edit_mode','builder'),(2574,220,'_elementor_template_type','wp-page'),(2575,220,'_elementor_version','3.5.6'),(2576,220,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2577,220,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2578,220,'_elementor_page_assets','a:0:{}'),(2580,221,'_wp_page_template','default'),(2581,221,'_elementor_edit_mode','builder'),(2582,221,'_elementor_template_type','wp-page'),(2583,221,'_elementor_version','3.5.6'),(2584,221,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wp_postmeta` VALUES (2585,221,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2586,221,'_elementor_page_assets','a:0:{}'),(2589,222,'_wp_attached_file','2022/03/naish-logo-1.png'),(2590,222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:173;s:6:\"height\";i:116;s:4:\"file\";s:24:\"2022/03/naish-logo-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"naish-logo-1-150x116.png\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2607,226,'_wp_attached_file','2022/03/cropped-cropped-naish-logo-1.png'),(2608,226,'_wp_attachment_context','site-icon'),(2609,226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:40:\"2022/03/cropped-cropped-naish-logo-1.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"cropped-cropped-naish-logo-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"cropped-cropped-naish-logo-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"cropped-cropped-naish-logo-1-280x180.png\";s:5:\"width\";i:280;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:40:\"cropped-cropped-naish-logo-1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:40:\"cropped-cropped-naish-logo-1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:40:\"cropped-cropped-naish-logo-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:38:\"cropped-cropped-naish-logo-1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2613,228,'_wp_page_template','default'),(2614,228,'_elementor_edit_mode','builder'),(2615,228,'_elementor_template_type','wp-page'),(2616,228,'_elementor_version','3.5.6'),(2617,228,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2618,228,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2619,228,'_elementor_page_assets','a:0:{}'),(2620,229,'_wp_page_template','default'),(2621,229,'_elementor_edit_mode','builder'),(2622,229,'_elementor_template_type','wp-page'),(2623,229,'_elementor_version','3.5.6'),(2624,229,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"557010d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f0297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a0d8239\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"066cd67\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"86d5d44\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"90bc0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"61cec3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2625,229,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2626,229,'_elementor_page_assets','a:0:{}'),(2630,230,'_wp_page_template','default'),(2631,230,'_elementor_edit_mode','builder'),(2632,230,'_elementor_template_type','wp-page'),(2633,230,'_elementor_version','3.5.6'),(2634,230,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2635,230,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2636,230,'_elementor_page_assets','a:0:{}'),(2642,231,'_wp_page_template','default'),(2643,231,'_elementor_edit_mode','builder'),(2644,231,'_elementor_template_type','wp-page'),(2645,231,'_elementor_version','3.5.6'),(2646,231,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2647,231,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2648,231,'_elementor_page_assets','a:0:{}'),(2650,232,'_wp_page_template','default'),(2651,232,'_elementor_edit_mode','builder'),(2652,232,'_elementor_template_type','wp-page'),(2653,232,'_elementor_version','3.5.6'),(2654,232,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#191919\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"globals\\/colors?id=primary\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2655,232,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2656,232,'_elementor_page_assets','a:0:{}'),(2658,233,'_wp_page_template','default'),(2659,233,'_elementor_edit_mode','builder'),(2660,233,'_elementor_template_type','wp-page'),(2661,233,'_elementor_version','3.5.6'),(2662,233,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2663,233,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2664,233,'_elementor_page_assets','a:0:{}'),(2666,234,'_wp_page_template','default'),(2667,234,'_elementor_edit_mode','builder'),(2668,234,'_elementor_template_type','wp-page'),(2669,234,'_elementor_version','3.5.6'),(2670,234,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2671,234,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2672,234,'_elementor_page_assets','a:0:{}'),(2673,235,'_wp_page_template','default'),(2674,235,'_elementor_edit_mode','builder'),(2675,235,'_elementor_template_type','wp-page'),(2676,235,'_elementor_version','3.5.6'),(2677,235,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2021\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2678,235,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2679,235,'_elementor_page_assets','a:0:{}'),(2680,236,'_wp_page_template','default'),(2681,236,'_elementor_edit_mode','builder'),(2682,236,'_elementor_template_type','wp-page'),(2683,236,'_elementor_version','3.5.6');
INSERT INTO `wp_postmeta` VALUES (2684,236,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2685,236,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2686,236,'_elementor_page_assets','a:0:{}'),(2688,237,'_wp_page_template','default'),(2689,237,'_elementor_edit_mode','builder'),(2690,237,'_elementor_template_type','wp-page'),(2691,237,'_elementor_version','3.5.6'),(2692,237,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2693,237,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2694,237,'_elementor_page_assets','a:0:{}'),(2696,238,'_wp_page_template','default'),(2697,238,'_elementor_edit_mode','builder'),(2698,238,'_elementor_template_type','wp-page'),(2699,238,'_elementor_version','3.5.6'),(2700,238,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#F8E7B7\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2701,238,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2702,238,'_elementor_page_assets','a:0:{}'),(2704,239,'_wp_page_template','default'),(2705,239,'_elementor_edit_mode','builder'),(2706,239,'_elementor_template_type','wp-page'),(2707,239,'_elementor_version','3.5.6'),(2708,239,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2709,239,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2710,239,'_elementor_page_assets','a:0:{}'),(2729,242,'_wp_page_template','templates/page-builder-content.php'),(2730,242,'_elementor_template_type','wp-page'),(2731,242,'_elementor_version','3.5.6'),(2732,242,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2733,242,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2734,242,'_elementor_page_assets','a:0:{}'),(2735,242,'_elementor_edit_mode','builder'),(2737,243,'_wp_page_template','templates/page-builder-content.php'),(2738,243,'_elementor_template_type','wp-page'),(2739,243,'_elementor_version','3.5.6'),(2740,243,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5491581\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"layout\":\"full_width\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"d35f992\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"d3cfee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Team\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Meet \",\"title_secondary_highlight\":\"our team.\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"2119153\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b91d082\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"370c15d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-84448@2x@2x.jpg\",\"id\":\"28\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"0c49909\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ff0bbbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/pretty-woman-standing-over-grey-wall-background-4A829TX.png\",\"id\":\"27\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"747d532\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd41d21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Mask-Group-844449@2x.jpg\",\"id\":\"26\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c936aee\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":\"1400\",\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"db6036e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"a514f55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\",\"id\":\"25\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"522271c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6066a84\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/Full-body-portrait-of-professional-business-woman.jpg\",\"id\":\"24\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"},{\"id\":\"264a84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e2f7903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jimmie Benedict\",\"subtitle\":\"Marketing\",\"staff_img\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\",\"id\":\"23\"},\"img_shape\":\"rect\",\"preloadable\":\"yes\",\"socials\":\"yes\",\"social_twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social_pinterest\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"wrapper_main_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"custom_css\":\"selector .aux-staff-content{\\n    position: relative;\\n    bottom: 90px;\\n    left: 35px;\\n}\\nselector .aux-staff-footer{\\n    position: absolute;\\n    right: 60px;\\n    bottom: -55px;\\n    border-top:none;\\n    background-color: #3E3E3E;\\n}\\nselector .aux-staff-footer ul li{\\n    padding: 0 5px;\\n} \\nselector .aux-media-image:after{\\n    content: \'\';\\n    width: 100%;\\n    height: 100%;\\n    background: transparent linear-gradient(1deg, var( --auxin-featured-color-2 ) 0%, #3E3E3E00 100%);\\n    display: inline-block;\\n    position: absolute;\\n    left: 0;\\n    top: 0;\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector .aux-staff-content{\\n    opacity: 0;\\n    transition: all 250ms ease-in;\\n}\\nselector:hover .aux-staff-content , selector:hover .aux-media-image:after{\\n    opacity: 1;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"socials_color\":\"globals\\/colors?id=accent\",\"socials_hover_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"subtitle_color\":\"#FFFFFF99\",\"subtitle_typography_typography\":\"custom\",\"subtitle_typography_font_size\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"subtitle_typography_font_weight\":\"500\",\"subtitle_typography_text_transform\":\"capitalize\",\"subtitle_typography_font_style\":\"normal\",\"subtitle_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.42\",\"sizes\":[]},\"subtitle_margin_bottom\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"socials_color\":\"#FFFFFF\",\"socials_hover_color\":\"#FF7E44\",\"icon_size\":\"aux-small\",\"socials_padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":\"\"},\"socials_padding_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"10\",\"bottom\":\"3\",\"left\":\"10\",\"isLinked\":\"\"},\"socials_padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"17\",\"bottom\":\"8\",\"left\":\"17\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_delay\":100,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_staff\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c7cbefb\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"120\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"-8\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=primary\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2741,243,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2742,243,'_elementor_page_assets','a:0:{}'),(2743,243,'_elementor_edit_mode','builder'),(2745,244,'_wp_page_template','templates/page-builder-content.php'),(2746,244,'_elementor_template_type','wp-page'),(2747,244,'_elementor_version','3.5.6'),(2748,244,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"},\"background_overlay_color\":\"#8F1518\"},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2749,244,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2750,244,'_elementor_page_assets','a:0:{}'),(2751,244,'_elementor_edit_mode','builder'),(2753,245,'_wp_page_template','templates/page-builder-content.php'),(2754,245,'_elementor_template_type','wp-page'),(2755,245,'_elementor_version','3.5.6'),(2756,245,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"},\"background_overlay_color\":\"#8F1518\"},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2757,245,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2758,245,'_elementor_page_assets','a:0:{}'),(2759,245,'_elementor_edit_mode','builder'),(2760,246,'_wp_page_template','templates/page-builder-content.php'),(2761,246,'_elementor_template_type','wp-page'),(2762,246,'_elementor_version','3.5.6'),(2763,246,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"},\"background_overlay_color\":\"#8F1518\"},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FF7E44\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2764,246,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2765,246,'_elementor_page_assets','a:0:{}'),(2766,246,'_elementor_edit_mode','builder'),(2767,247,'_wp_page_template','templates/page-builder-content.php'),(2768,247,'_elementor_template_type','wp-page'),(2769,247,'_elementor_version','3.5.6'),(2770,247,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"},\"background_overlay_color\":\"#8F1518\"},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FFFFFF\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2771,247,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2772,247,'_elementor_page_assets','a:0:{}'),(2773,247,'_elementor_edit_mode','builder'),(2774,248,'_wp_page_template','templates/page-builder-content.php'),(2775,248,'_elementor_template_type','wp-page'),(2776,248,'_elementor_version','3.5.6'),(2777,248,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"},\"background_overlay_color\":\"#8F1518\"},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FFFFFF\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2778,248,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2779,248,'_elementor_page_assets','a:0:{}'),(2780,248,'_elementor_edit_mode','builder'),(2781,249,'_wp_page_template','templates/page-builder-content.php'),(2782,249,'_elementor_template_type','wp-page'),(2783,249,'_elementor_version','3.5.6'),(2784,249,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"},\"background_overlay_color\":\"#8F1518\"},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FFFFFF\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2785,249,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2786,249,'_elementor_page_assets','a:0:{}'),(2787,249,'_elementor_edit_mode','builder'),(2788,250,'_wp_page_template','templates/page-builder-content.php'),(2789,250,'_elementor_template_type','wp-page'),(2790,250,'_elementor_version','3.5.6'),(2791,250,'_elementor_data','[{\"id\":\"9798e3e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f27033c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8eb50ff\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"568\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"769\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"c0d2660\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"74\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"348\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"},\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"-19\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        bottom:-30%;\\n    }\\n}\",\"aux_position_bottom_tablet\":{\"unit\":\"%\",\"size\":\"-27\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2400,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"eb6db59\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_mobile\":\"reverse-mobile\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector .elementor-row{\\n        display: flex;\\n        flex-direction: column-reverse;\\n    }\\n}\"},\"elements\":[{\"id\":\"f8ae2e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        margin-left:80px;\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"6c1aa11\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We design &amp; \",\"title_secondary_highlight\":\"build interiors\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"59\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"548\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_width\":{\"unit\":\"px\",\"size\":\"485\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"description_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"b571287\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":1200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"5333168\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"dcc95f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/jason-leung-poI7DelFiVA-unsplash.png\",\"id\":\"29\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2700,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4b2dfd1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"190\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b9833b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"10f5220\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"0ff70ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"973e99d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/shunya-koide-lnGrGTmftcY-unsplash.png\",\"id\":\"21\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"030a956\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Build Value.\",\"content\":\"<p>nnovation is often the ability to reach into the past and bring back what is good<\\/p>\",\"btn_label\":\"work with us\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"btn_text_color\":\"#FFFFFF\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Heebo\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"button_typography_font_weight\":\"700\",\"button_typography_text_transform\":\"uppercase\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"39\",\"bottom\":\"17\",\"left\":\"40\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FF7E44\",\"__globals__\":{\"wrapper_content_background_normal_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=accent\",\"content_typography_typography\":\"\",\"button_background_color\":\"\",\"button_icon_color\":\"\",\"btn_text_color\":\"globals\\/colors?id=accent\",\"button_typography_typography\":\"\",\"hover_button_background_color\":\"\"},\"content_padding\":{\"unit\":\"px\",\"top\":\"37\",\"right\":\"070\",\"bottom\":\"31\",\"left\":\"40\",\"isLinked\":\"\"},\"hover_button_background_background\":\"classic\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_bottom\":{\"unit\":\"px\",\"size\":\"70\",\"sizes\":[]},\"custom_css\":\"selector .widget-content p{\\n    display: inline-block;\\n    width: 320px;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color: #191919 !important;\\n    box-shadow: none;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector{\\n        right:-50px;\\n    }\\n}\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"30\",\"isLinked\":\"\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"28\",\"bottom\":\"15\",\"left\":\"29\",\"isLinked\":\"\"},\"aux_position_type_mobile\":\"relative\",\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-60\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_bottom_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"1\"},{\"id\":\"218cc75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"170\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"d539da0\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Over The World In Automation\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v<\\/p>\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"71\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"-0.71\",\"sizes\":[]},\"title2_color\":\"#FF7E44\",\"title2_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-70\",\"isLinked\":\"\"},\"title2_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"capitalize\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"488\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"title2_color\":\"globals\\/colors?id=secondary\",\"title2_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_highlighted_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"65\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"-160\",\"isLinked\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"-100\",\"isLinked\":\"\"},\"title_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"title_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"title_width_tablet\":{\"unit\":\"px\",\"size\":\"490\",\"sizes\":[]},\"title_width_mobile\":{\"unit\":\"px\",\"size\":\"340\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"8e899f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"293\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        left:0;\\n        right:0;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-70\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-50\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"-30\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_z_index\":\"9\",\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"6833691\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/architecture-building-city-of-arts-and-sciences-256150.png\",\"id\":\"22\"},\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"200\",\"left\":\"35\",\"isLinked\":\"\"},\"__globals__\":{\"background_overlay_color\":\"\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"35\",\"bottom\":\"100\",\"left\":\"35\",\"isLinked\":\"\"},\"background_overlay_color\":\"#8F1518\"},\"elements\":[{\"id\":\"aee6e16\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"0d539a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our missions\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Learn about \",\"title_secondary_highlight\":\"our success\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#FFFFFF\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FFFFFF\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before , selector .aux-modern-heading-primary:after{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #FF7E44;\\n    display: inline-block;\\n    margin:0 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: #FF7E44;\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"globals\\/colors?id=accent\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_highlighted_text_shadow_text_shadow_type\":\"yes\",\"title2_highlighted_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(46.5, 23.319497282608694, 23.319497282608694, 0.3)\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"9ab5b41\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b2731ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"22e468d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"title\":\"Products\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"167d3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"0acb3df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Customers\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"ending_number\":970},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"7e022ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b707c9b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"title\":\"Clients\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"d3cd789\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"42\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":\"\"},\"_inline_size\":null},\"elements\":[{\"id\":\"b9d4d86\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"title\":\"Projects Launched\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":\"1\"},{\"id\":\"43c30ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"042\",\"bottom\":\"0\",\"left\":\"042\",\"isLinked\":false}},\"elements\":[{\"id\":\"dd4c62c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"title\":\"Materials\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Heebo\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"typography_number_font_weight\":\"700\",\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Mukta\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF33\",\"__globals__\":{\"number_color\":\"\",\"title_color\":\"globals\\/colors?id=accent\",\"typography_number_typography\":\"\",\"typography_title_typography\":\"\"},\"typography_number_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"typography_title_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_counter\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2792,250,'_elementor_controls_usage','a:9:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:3;s:6:\"_width\";i:3;s:13:\"_width_tablet\";i:3;s:13:\"_width_mobile\";i:1;s:7:\"_height\";i:3;s:14:\"_height_tablet\";i:3;s:14:\"_height_mobile\";i:1;s:27:\"shape_background_background\";i:3;}}s:8:\"advanced\";a:4:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:2;s:19:\"aux_position_bottom\";i:2;s:17:\"aux_position_left\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;s:19:\"aux_animation_delay\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:5;s:9:\"title_tag\";i:3;s:9:\"alignment\";i:2;s:16:\"alignment_tablet\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:2:{s:22:\"title_secondary_before\";i:3;s:25:\"title_secondary_highlight\";i:3;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:3;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:16:{s:27:\"title_typography_typography\";i:5;s:28:\"title_typography_font_family\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_text_transform\";i:5;s:31:\"title_typography_letter_spacing\";i:3;s:11:\"title_color\";i:3;s:12:\"title_margin\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:33:\"title_typography_font_size_mobile\";i:2;s:28:\"title_typography_line_height\";i:1;s:19:\"title_margin_tablet\";i:1;s:19:\"title_margin_mobile\";i:1;s:11:\"title_width\";i:1;s:18:\"title_width_tablet\";i:1;s:18:\"title_width_mobile\";i:1;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:4;s:29:\"title2_typography_font_family\";i:4;s:27:\"title2_typography_font_size\";i:4;s:29:\"title2_typography_font_weight\";i:4;s:29:\"title2_typography_line_height\";i:3;s:12:\"title2_color\";i:4;s:34:\"title2_typography_font_size_tablet\";i:4;s:34:\"title2_typography_font_size_mobile\";i:4;s:19:\"title2_width_mobile\";i:3;s:12:\"title2_width\";i:1;s:19:\"title2_width_tablet\";i:1;s:32:\"title2_typography_text_transform\";i:1;s:32:\"title2_typography_letter_spacing\";i:1;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:4;s:41:\"title2_highlighted_typography_font_family\";i:4;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:4;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:4;s:46:\"title2_highlighted_typography_font_size_mobile\";i:4;s:44:\"title2_highlighted_typography_text_transform\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:3;s:13:\"divider_width\";i:3;s:14:\"divider_margin\";i:3;s:13:\"divider_color\";i:3;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:4;s:34:\"description_typography_font_family\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_weight\";i:4;s:17:\"description_width\";i:2;s:39:\"description_typography_font_size_tablet\";i:4;s:24:\"description_width_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:1;s:8:\"_z_index\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:4;}s:24:\"aux_core_common_position\";a:7:{s:17:\"aux_position_type\";i:1;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:23:\"aux_position_top_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:1:{s:5:\"label\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:6:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:13;s:6:\"margin\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:4;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:5:\"align\";i:6;s:19:\"_inline_size_tablet\";i:4;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:6:\"layout\";i:3;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:3;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:9:\"aux_staff\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:8:\"subtitle\";i:6;}s:13:\"image_section\";a:3:{s:9:\"staff_img\";i:6;s:9:\"img_shape\";i:6;s:11:\"preloadable\";i:6;}s:14:\"social_section\";a:4:{s:7:\"socials\";i:6;s:14:\"social_twitter\";i:6;s:15:\"social_facebook\";i:6;s:16:\"social_pinterest\";i:6;}}s:5:\"style\";a:4:{s:21:\"wrapper_style_section\";a:2:{s:20:\"wrapper_main_padding\";i:6;s:23:\"wrapper_content_padding\";i:6;}s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:31:\"title_typography_text_transform\";i:6;s:16:\"title_margin_top\";i:6;s:19:\"title_margin_bottom\";i:6;}s:22:\"subtitle_style_section\";a:8:{s:14:\"subtitle_color\";i:6;s:30:\"subtitle_typography_typography\";i:6;s:29:\"subtitle_typography_font_size\";i:6;s:31:\"subtitle_typography_font_weight\";i:6;s:34:\"subtitle_typography_text_transform\";i:6;s:30:\"subtitle_typography_font_style\";i:6;s:34:\"subtitle_typography_letter_spacing\";i:6;s:22:\"subtitle_margin_bottom\";i:6;}s:21:\"socials_style_section\";a:6:{s:13:\"socials_color\";i:6;s:19:\"socials_hover_color\";i:6;s:9:\"icon_size\";i:6;s:15:\"socials_padding\";i:6;s:22:\"socials_padding_tablet\";i:6;s:22:\"socials_padding_mobile\";i:6;}}s:8:\"advanced\";a:3:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:4;s:20:\"aux_animation_easing\";i:6;}}}}s:11:\"aux_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"prefix\";i:1;s:5:\"title\";i:4;s:6:\"suffix\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:6:{s:12:\"number_color\";i:4;s:28:\"typography_number_typography\";i:4;s:29:\"typography_number_font_family\";i:4;s:27:\"typography_number_font_size\";i:4;s:29:\"typography_number_font_weight\";i:4;s:34:\"typography_number_font_size_mobile\";i:4;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:28:\"typography_title_font_family\";i:4;s:26:\"typography_title_font_size\";i:4;s:28:\"typography_title_font_weight\";i:4;s:33:\"typography_title_font_size_mobile\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:4;s:17:\"_background_color\";i:4;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:4;s:22:\"aux_animation_duration\";i:4;s:20:\"aux_animation_easing\";i:4;s:19:\"aux_animation_delay\";i:2;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"content_section\";a:2:{s:5:\"title\";i:1;s:7:\"content\";i:1;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:1;s:8:\"btn_link\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:19:\"title_margin_bottom\";i:1;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:15:\"content_padding\";i:1;s:35:\"content_typography_font_size_tablet\";i:1;s:35:\"content_typography_font_size_mobile\";i:1;s:22:\"content_padding_tablet\";i:1;}s:20:\"button_style_section\";a:12:{s:14:\"btn_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:29:\"button_typography_font_family\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:10:\"btn_border\";i:1;s:14:\"button_padding\";i:1;s:34:\"hover_button_background_background\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;s:21:\"button_padding_tablet\";i:1;}s:21:\"wrapper_style_section\";a:4:{s:10:\"text_align\";i:1;s:44:\"wrapper_content_background_normal_background\";i:1;s:39:\"wrapper_content_background_normal_color\";i:1;s:23:\"wrapper_content_padding\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:8:{s:17:\"aux_position_type\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:26:\"aux_position_bottom_tablet\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2793,250,'_elementor_page_assets','a:0:{}'),(2794,250,'_elementor_edit_mode','builder'),(2811,72,'_edit_last','1'),(2812,255,'_wp_page_template','templates/page-builder-content.php'),(2813,255,'_elementor_edit_mode','builder'),(2814,255,'_elementor_template_type','wp-page'),(2815,255,'_elementor_version','3.0.15'),(2816,255,'_elementor_data','[{\"id\":\"ca96cdd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b0c5a6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"318d61b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bd2612\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"82bf8b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fdbc34f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"d23831d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"de73bac\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"show_filters\":\"\",\"perpage\":\"9\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#7A7A7A\",\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Mukta\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .wpulike{\\n    display: none;\\n}\\nselector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: relative;\\n    top: -100px;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: #fff;\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-col:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-col:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\nselector .aux-pagination{\\n    display: flex;\\n    justify-content: center;\\n}\\nselector .aux-pagination .prev , selector .aux-pagination .next{\\n    display: none;\\n}\\nselector .aux-pagination a{\\n    color: var( --e-global-color-primary );\\n    font-size: 18px;\\n    font-weight: bold;\\n    border-radius: 0;\\n}\\nselector .aux-pagination .active a{\\n    color: #fff;\\n    background-color: var( --e-global-color-primary );\\n    border-color: var( --e-global-color-primary );\\n    border-radius: 0;\\n    font-size: 18px;\\n    font-weight: bold;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size:23px !important;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 40px 40px;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 30px 30px;\\n    }\\n    selector .entry-title a{\\n        font-size:17px !important;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"info_color\":\"globals\\/colors?id=text\",\"info_typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"columns_tablet\":\"2\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2817,255,'_elementor_controls_usage','a:4:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:9:\"title_tag\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;s:21:\"title_secondary_after\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:1;s:12:\"title_margin\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:20:\"title2_style_heading\";a:10:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:12:\"title2_width\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:6:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:25:\"description_style_section\";a:8:{s:34:\"description_typography_font_family\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:39:\"description_typography_font_size_tablet\";i:2;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:17:\"description_width\";i:1;s:39:\"description_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:26:\"aux_recent_portfolios_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"settings\";a:2:{s:15:\"filters_section\";a:1:{s:12:\"show_filters\";i:1;}s:16:\"paginate_section\";a:1:{s:7:\"perpage\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:8:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:27:\"info_typography_font_family\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(2818,72,'_edit_lock','1647526602:1'),(2819,77,'_wp_old_date','2022-03-11'),(2820,78,'_wp_old_date','2022-03-11'),(2821,79,'_wp_old_date','2022-03-11'),(2822,80,'_wp_old_date','2022-03-11'),(2823,81,'_wp_old_date','2022-03-11'),(2824,256,'_wp_page_template','templates/page-builder-content.php'),(2825,256,'_elementor_edit_mode','builder'),(2826,256,'_elementor_template_type','wp-page'),(2827,256,'_elementor_version','3.5.6');
INSERT INTO `wp_postmeta` VALUES (2828,256,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design Project\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office design\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in architect\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f918cd0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f5f3910\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ddd9631\",\"elType\":\"widget\",\"settings\":{\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca39c6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"85b9fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4937a4\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"cat\":[\"7\"],\"filter_style\":\"aux-fill\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2829,256,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2830,256,'_elementor_page_assets','a:0:{}'),(2832,257,'_wp_page_template','templates/page-builder-content.php'),(2833,257,'_elementor_edit_mode','builder'),(2834,257,'_elementor_template_type','wp-page'),(2835,257,'_elementor_version','3.5.6'),(2836,257,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design Project\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office design\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in architect\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f918cd0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f5f3910\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ddd9631\",\"elType\":\"widget\",\"settings\":{\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ca39c6e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"85b9fb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e4937a4\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"cat\":[\"7\"],\"filter_style\":\"aux-fill\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(2837,257,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2838,257,'_elementor_page_assets','a:0:{}'),(2840,258,'_wp_page_template','templates/page-builder-content.php'),(2841,258,'_elementor_edit_mode','builder'),(2842,258,'_elementor_template_type','wp-page'),(2843,258,'_elementor_version','3.5.6'),(2844,258,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2845,258,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2846,258,'_elementor_page_assets','a:0:{}'),(2848,259,'_wp_page_template','templates/page-builder-content.php'),(2849,259,'_elementor_edit_mode','builder'),(2850,259,'_elementor_template_type','wp-page'),(2851,259,'_elementor_version','3.5.6'),(2852,259,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2853,259,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2854,259,'_elementor_page_assets','a:0:{}'),(2855,260,'_wp_page_template','templates/page-builder-content.php'),(2856,260,'_elementor_edit_mode','builder'),(2857,260,'_elementor_template_type','wp-page'),(2858,260,'_elementor_version','3.5.6'),(2859,260,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2860,260,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2861,260,'_elementor_page_assets','a:0:{}'),(2862,261,'_wp_page_template','templates/page-builder-content.php'),(2863,261,'_elementor_edit_mode','builder'),(2864,261,'_elementor_template_type','wp-page'),(2865,261,'_elementor_version','3.5.6'),(2866,261,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_text_shadow_text_shadow_type\":\"yes\",\"title_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(143, 21.00000000000002, 24.000000000000092, 0.3)\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2867,261,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2868,261,'_elementor_page_assets','a:0:{}'),(2874,262,'_wp_page_template','templates/page-builder-content.php'),(2875,262,'_elementor_edit_mode','builder'),(2876,262,'_elementor_template_type','wp-page'),(2877,262,'_elementor_version','3.5.6'),(2878,262,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_text_shadow_text_shadow_type\":\"yes\",\"title_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(143, 21.00000000000002, 24.000000000000092, 0.3)\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2879,262,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2880,262,'_elementor_page_assets','a:0:{}'),(2882,263,'_wp_page_template','templates/page-builder-content.php'),(2883,263,'_elementor_edit_mode','builder'),(2884,263,'_elementor_template_type','wp-page'),(2885,263,'_elementor_version','3.5.6'),(2886,263,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_text_shadow_text_shadow_type\":\"yes\",\"title_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(143, 21.00000000000002, 24.000000000000092, 0.3)\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2887,263,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2888,263,'_elementor_page_assets','a:0:{}'),(2890,264,'_wp_page_template','templates/page-builder-content.php'),(2891,264,'_elementor_edit_mode','builder'),(2892,264,'_elementor_template_type','wp-page'),(2893,264,'_elementor_version','3.5.6'),(2894,264,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(143, 21.00000000000002, 24.000000000000092, 0.3)\"},\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2895,264,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2896,264,'_elementor_page_assets','a:0:{}'),(2898,265,'_wp_page_template','templates/page-builder-content.php'),(2899,265,'_elementor_edit_mode','builder'),(2900,265,'_elementor_template_type','wp-page'),(2901,265,'_elementor_version','3.5.6'),(2902,265,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(143, 21.00000000000002, 24.000000000000092, 0.3)\"},\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2903,265,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2904,265,'_elementor_page_assets','a:0:{}'),(2905,266,'_wp_page_template','templates/page-builder-content.php'),(2906,266,'_elementor_edit_mode','builder'),(2907,266,'_elementor_template_type','wp-page'),(2908,266,'_elementor_version','3.5.6'),(2909,266,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(143, 21.00000000000002, 24.000000000000092, 0.3)\"},\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2910,266,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2911,266,'_elementor_page_assets','a:0:{}'),(2912,267,'_wp_page_template','templates/page-builder-content.php'),(2913,267,'_elementor_edit_mode','builder'),(2914,267,'_elementor_template_type','wp-page'),(2915,267,'_elementor_version','3.5.6'),(2916,267,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\",\"title_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(143, 21.00000000000002, 24.000000000000092, 0.3)\"},\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2917,267,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2918,267,'_elementor_page_assets','a:0:{}'),(2919,268,'_wp_page_template','templates/page-builder-content.php'),(2920,268,'_elementor_edit_mode','builder'),(2921,268,'_elementor_template_type','wp-page'),(2922,268,'_elementor_version','3.5.6');
INSERT INTO `wp_postmeta` VALUES (2923,268,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\",\"title_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(143, 21.00000000000002, 24.000000000000092, 0.3)\"},\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2924,268,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2925,268,'_elementor_page_assets','a:0:{}'),(2926,269,'_wp_page_template','templates/page-builder-content.php'),(2927,269,'_elementor_edit_mode','builder'),(2928,269,'_elementor_template_type','wp-page'),(2929,269,'_elementor_version','3.5.6'),(2930,269,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\",\"title_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(143, 21.00000000000002, 24.000000000000092, 0.3)\"},\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2931,269,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2932,269,'_elementor_page_assets','a:0:{}'),(2933,270,'_wp_page_template','templates/page-builder-content.php'),(2934,270,'_elementor_edit_mode','builder'),(2935,270,'_elementor_template_type','wp-page'),(2936,270,'_elementor_version','3.5.6'),(2937,270,'_elementor_data','[{\"id\":\"d3b737e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"993b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1f4c852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"f034bf8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"edc6439\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"c304778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services1\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"ef0b87f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services4\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"3adec99\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"ee7d70a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services2\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"2ab535e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services5\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"fd11c08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2389c7c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services3\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"f6c4999\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services6\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fd31791\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"bd1fce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"40a0c61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f17ec94\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7c5b780\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"62d3f38\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"b0eed81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Auto\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\",\"title_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(143, 21.00000000000002, 24.000000000000092, 0.3)\"},\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"c10acbd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"39a543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"42fb0f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"8b7877f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"de35129\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"304f1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"9b88bd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"b5365ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"327655e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"a3fdc16\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"20ea850\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"627ebb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"5a0e39b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"93338f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"5414757\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"87c35c1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"d265820\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"9cbedf2\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"821f031\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"e69669c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"700b51f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"7c20771\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"b41eed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2938,270,'_elementor_controls_usage','a:6:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:11;s:9:\"title_tag\";i:2;s:9:\"alignment\";i:5;s:7:\"divider\";i:9;s:16:\"alignment_tablet\";i:1;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:3;s:19:\"title_tag_secondary\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:5;}}s:5:\"style\";a:6:{s:19:\"title_style_section\";a:10:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:11;s:26:\"title_typography_font_size\";i:10;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:3;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:6;s:12:\"title_margin\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;}s:20:\"title2_style_heading\";a:9:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:2;s:27:\"title2_typography_font_size\";i:2;s:29:\"title2_typography_font_weight\";i:2;s:29:\"title2_typography_line_height\";i:2;s:12:\"title2_color\";i:1;s:34:\"title2_typography_font_size_tablet\";i:2;s:34:\"title2_typography_font_size_mobile\";i:2;s:19:\"title2_width_mobile\";i:2;}s:32:\"title2_highlighted_style_heading\";a:10:{s:40:\"title2_highlighted_typography_typography\";i:3;s:41:\"title2_highlighted_typography_font_family\";i:3;s:39:\"title2_highlighted_typography_font_size\";i:3;s:41:\"title2_highlighted_typography_font_weight\";i:3;s:24:\"title2_highlighted_color\";i:3;s:46:\"title2_highlighted_typography_font_size_tablet\";i:3;s:46:\"title2_highlighted_typography_font_size_mobile\";i:3;s:41:\"title2_highlighted_typography_line_height\";i:1;s:24:\"title2_highlighted_width\";i:1;s:31:\"title2_highlighted_width_tablet\";i:1;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:2;s:13:\"divider_width\";i:2;s:14:\"divider_margin\";i:2;s:13:\"divider_color\";i:2;}s:25:\"description_style_section\";a:7:{s:33:\"description_typography_typography\";i:6;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:6;s:34:\"description_typography_font_weight\";i:6;s:39:\"description_typography_font_size_tablet\";i:6;s:17:\"description_color\";i:5;s:17:\"description_width\";i:1;}s:21:\"wrapper_style_section\";a:1:{s:15:\"wrapper_padding\";i:3;}}s:8:\"advanced\";a:6:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;s:8:\"_z_index\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}s:24:\"aux_core_common_position\";a:1:{s:17:\"aux_position_type\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:23:\"_element_vertical_align\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:19:\"_inline_size_tablet\";i:6;s:12:\"align_tablet\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:5;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:3;s:22:\"aux_animation_duration\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:9;s:16:\"content_position\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:8;s:7:\"padding\";i:5;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:15:\"content_section\";a:2:{s:5:\"title\";i:6;s:7:\"content\";i:6;}s:14:\"button_section\";a:2:{s:9:\"btn_label\";i:6;s:17:\"aux_text_btn_icon\";i:6;}s:14:\"header_section\";a:2:{s:13:\"icon_or_image\";i:6;s:10:\"svg_inline\";i:6;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:6;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:6;s:10:\"icon_color\";i:6;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:6;s:27:\"title_typography_typography\";i:6;s:28:\"title_typography_font_family\";i:6;s:26:\"title_typography_font_size\";i:6;s:33:\"title_typography_font_size_tablet\";i:6;s:28:\"title_typography_font_weight\";i:6;s:19:\"title_margin_bottom\";i:6;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:6;s:19:\"content_hover_color\";i:6;s:29:\"content_typography_typography\";i:6;s:30:\"content_typography_font_family\";i:6;s:28:\"content_typography_font_size\";i:6;s:35:\"content_typography_font_size_tablet\";i:6;s:30:\"content_typography_font_weight\";i:6;s:30:\"content_typography_line_height\";i:6;s:15:\"content_padding\";i:6;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:6;s:23:\"button_background_color\";i:6;s:34:\"hover_button_background_background\";i:6;s:29:\"hover_button_background_color\";i:6;s:13:\"btn_icon_size\";i:6;s:17:\"button_icon_color\";i:6;s:23:\"hover_button_icon_color\";i:6;s:10:\"btn_border\";i:6;s:14:\"button_padding\";i:6;s:21:\"button_padding_tablet\";i:6;}s:21:\"wrapper_style_section\";a:7:{s:10:\"text_align\";i:6;s:23:\"wrapper_content_padding\";i:6;s:30:\"wrapper_content_padding_tablet\";i:6;s:44:\"wrapper_content_background_normal_background\";i:6;s:39:\"wrapper_content_background_normal_color\";i:6;s:38:\"wrapper_content_background_hover_color\";i:6;s:43:\"wrapper_content_background_hover_background\";i:4;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:6;s:7:\"_margin\";i:6;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:6;}s:22:\"aux_core_general_extra\";a:1:{s:20:\"aux_max_width_tablet\";i:6;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:6;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:6;s:20:\"aux_animation_easing\";i:6;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:1;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:1;s:18:\"btn_padding_normal\";i:1;s:25:\"btn_padding_normal_tablet\";i:1;s:23:\"btn_bg_hover_background\";i:1;s:19:\"btn_bg_normal_color\";i:1;s:18:\"btn_bg_hover_color\";i:1;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:1;s:26:\"text_normal_typo_font_size\";i:1;s:17:\"text_normal_color\";i:1;s:28:\"text_normal_typo_font_family\";i:1;s:33:\"text_normal_typo_font_size_tablet\";i:1;s:28:\"text_normal_typo_font_weight\";i:1;s:31:\"text_normal_typo_text_transform\";i:1;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:9:\"aux_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:\"image_section\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}}'),(2939,270,'_elementor_page_assets','a:0:{}'),(2941,271,'_wp_page_template','default'),(2942,271,'_elementor_edit_mode','builder'),(2943,271,'_elementor_template_type','wp-page'),(2944,271,'_elementor_version','3.5.6'),(2945,271,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2946,271,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2947,271,'_elementor_page_assets','a:0:{}'),(2949,272,'_wp_page_template','default'),(2950,272,'_elementor_edit_mode','builder'),(2951,272,'_elementor_template_type','wp-page'),(2952,272,'_elementor_version','3.5.6'),(2953,272,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2954,272,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2955,272,'_elementor_page_assets','a:0:{}'),(2957,273,'_wp_page_template','default'),(2958,273,'_elementor_edit_mode','builder'),(2959,273,'_elementor_template_type','wp-page'),(2960,273,'_elementor_version','3.5.6'),(2961,273,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2962,273,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2963,273,'_elementor_page_assets','a:0:{}'),(2966,274,'_wp_page_template','default'),(2967,274,'_elementor_edit_mode','builder'),(2968,274,'_elementor_template_type','wp-page'),(2969,274,'_elementor_version','3.5.6'),(2970,274,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2971,274,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2972,274,'_elementor_page_assets','a:0:{}'),(2974,275,'_wp_page_template','default'),(2975,275,'_elementor_edit_mode','builder'),(2976,275,'_elementor_template_type','wp-page'),(2977,275,'_elementor_version','3.5.6'),(2978,275,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"living space.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2979,275,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2980,275,'_elementor_page_assets','a:0:{}'),(2982,276,'_wp_page_template','default'),(2983,276,'_elementor_edit_mode','builder'),(2984,276,'_elementor_template_type','wp-page'),(2985,276,'_elementor_version','3.5.6'),(2986,276,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2987,276,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(2988,276,'_elementor_page_assets','a:0:{}'),(2993,277,'_wp_page_template','templates/page-builder-content.php'),(2994,277,'_elementor_edit_mode','builder'),(2995,277,'_elementor_template_type','wp-page'),(2996,277,'_elementor_version','3.0.15'),(2997,277,'_elementor_data','[{\"id\":\"ca96cdd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b0c5a6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"318d61b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bd2612\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"82bf8b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fdbc34f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"d23831d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"de73bac\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"show_filters\":\"\",\"perpage\":\"9\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#7A7A7A\",\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Mukta\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .wpulike{\\n    display: none;\\n}\\nselector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: relative;\\n    top: -100px;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: #fff;\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-col:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-col:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\nselector .aux-pagination{\\n    display: flex;\\n    justify-content: center;\\n}\\nselector .aux-pagination .prev , selector .aux-pagination .next{\\n    display: none;\\n}\\nselector .aux-pagination a{\\n    color: var( --e-global-color-primary );\\n    font-size: 18px;\\n    font-weight: bold;\\n    border-radius: 0;\\n}\\nselector .aux-pagination .active a{\\n    color: #fff;\\n    background-color: var( --e-global-color-primary );\\n    border-color: var( --e-global-color-primary );\\n    border-radius: 0;\\n    font-size: 18px;\\n    font-weight: bold;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size:23px !important;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 40px 40px;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 30px 30px;\\n    }\\n    selector .entry-title a{\\n        font-size:17px !important;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"info_color\":\"globals\\/colors?id=text\",\"info_typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"columns_tablet\":\"2\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(2998,277,'_elementor_controls_usage','a:4:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:9:\"title_tag\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;s:21:\"title_secondary_after\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:1;s:12:\"title_margin\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:20:\"title2_style_heading\";a:10:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:12:\"title2_width\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:6:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:25:\"description_style_section\";a:8:{s:34:\"description_typography_font_family\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:39:\"description_typography_font_size_tablet\";i:2;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:17:\"description_width\";i:1;s:39:\"description_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:26:\"aux_recent_portfolios_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"settings\";a:2:{s:15:\"filters_section\";a:1:{s:12:\"show_filters\";i:1;}s:16:\"paginate_section\";a:1:{s:7:\"perpage\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:8:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:27:\"info_typography_font_family\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(3000,278,'_wp_page_template','templates/page-builder-content.php'),(3001,278,'_elementor_edit_mode','builder'),(3002,278,'_elementor_template_type','wp-page'),(3003,278,'_elementor_version','3.0.15'),(3004,278,'_elementor_data','[{\"id\":\"ca96cdd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b0c5a6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"318d61b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bd2612\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"82bf8b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Projects\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fdbc34f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"d23831d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"de73bac\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"show_filters\":\"\",\"perpage\":\"9\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#7A7A7A\",\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Mukta\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .wpulike{\\n    display: none;\\n}\\nselector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: relative;\\n    top: -100px;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: #fff;\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-col:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-col:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\nselector .aux-pagination{\\n    display: flex;\\n    justify-content: center;\\n}\\nselector .aux-pagination .prev , selector .aux-pagination .next{\\n    display: none;\\n}\\nselector .aux-pagination a{\\n    color: var( --e-global-color-primary );\\n    font-size: 18px;\\n    font-weight: bold;\\n    border-radius: 0;\\n}\\nselector .aux-pagination .active a{\\n    color: #fff;\\n    background-color: var( --e-global-color-primary );\\n    border-color: var( --e-global-color-primary );\\n    border-radius: 0;\\n    font-size: 18px;\\n    font-weight: bold;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size:23px !important;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 40px 40px;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 30px 30px;\\n    }\\n    selector .entry-title a{\\n        font-size:17px !important;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"info_color\":\"globals\\/colors?id=text\",\"info_typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"columns_tablet\":\"2\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3005,278,'_elementor_controls_usage','a:4:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:9:\"title_tag\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;s:21:\"title_secondary_after\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:1;s:12:\"title_margin\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:20:\"title2_style_heading\";a:10:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:12:\"title2_width\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:6:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:25:\"description_style_section\";a:8:{s:34:\"description_typography_font_family\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:39:\"description_typography_font_size_tablet\";i:2;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:17:\"description_width\";i:1;s:39:\"description_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:26:\"aux_recent_portfolios_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"settings\";a:2:{s:15:\"filters_section\";a:1:{s:12:\"show_filters\";i:1;}s:16:\"paginate_section\";a:1:{s:7:\"perpage\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:8:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:27:\"info_typography_font_family\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(3007,279,'_wp_page_template','templates/page-builder-content.php'),(3008,279,'_elementor_edit_mode','builder'),(3009,279,'_elementor_template_type','wp-page'),(3010,279,'_elementor_version','3.0.15'),(3011,279,'_elementor_data','[{\"id\":\"ca96cdd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b0c5a6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"318d61b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bd2612\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"82bf8b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fdbc34f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"d23831d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"de73bac\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"show_filters\":\"\",\"perpage\":\"9\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#7A7A7A\",\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Mukta\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .wpulike{\\n    display: none;\\n}\\nselector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: relative;\\n    top: -100px;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: #fff;\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-col:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-col:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\nselector .aux-pagination{\\n    display: flex;\\n    justify-content: center;\\n}\\nselector .aux-pagination .prev , selector .aux-pagination .next{\\n    display: none;\\n}\\nselector .aux-pagination a{\\n    color: var( --e-global-color-primary );\\n    font-size: 18px;\\n    font-weight: bold;\\n    border-radius: 0;\\n}\\nselector .aux-pagination .active a{\\n    color: #fff;\\n    background-color: var( --e-global-color-primary );\\n    border-color: var( --e-global-color-primary );\\n    border-radius: 0;\\n    font-size: 18px;\\n    font-weight: bold;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size:23px !important;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 40px 40px;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 30px 30px;\\n    }\\n    selector .entry-title a{\\n        font-size:17px !important;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"info_color\":\"globals\\/colors?id=text\",\"info_typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"columns_tablet\":\"2\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3012,279,'_elementor_controls_usage','a:4:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:9:\"title_tag\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;s:21:\"title_secondary_after\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:1;s:12:\"title_margin\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:20:\"title2_style_heading\";a:10:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:12:\"title2_width\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:6:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:25:\"description_style_section\";a:8:{s:34:\"description_typography_font_family\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:39:\"description_typography_font_size_tablet\";i:2;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:17:\"description_width\";i:1;s:39:\"description_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:26:\"aux_recent_portfolios_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"settings\";a:2:{s:15:\"filters_section\";a:1:{s:12:\"show_filters\";i:1;}s:16:\"paginate_section\";a:1:{s:7:\"perpage\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:8:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:27:\"info_typography_font_family\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(3014,72,'_elementor_page_assets','a:0:{}'),(3016,56,'_wp_page_template','default'),(3017,56,'_wp_old_slug','design-role'),(3018,57,'_edit_last','1'),(3019,57,'_wp_page_template','default'),(3020,57,'_wp_old_slug','means-of-design'),(3021,57,'_edit_lock','1647496990:1'),(3022,58,'_edit_last','1'),(3023,58,'_wp_page_template','default'),(3024,58,'_wp_old_slug','environmental-role'),(3025,58,'_edit_lock','1647497003:1'),(3026,59,'_edit_last','1'),(3027,59,'_wp_page_template','default'),(3028,59,'_wp_old_slug','construction-role'),(3029,59,'_edit_lock','1647497015:1'),(3030,60,'_edit_last','1'),(3031,60,'_wp_page_template','default'),(3032,60,'_wp_old_slug','lighting-design'),(3033,60,'_edit_lock','1647497025:1'),(3034,61,'_edit_last','1'),(3035,61,'_wp_page_template','default'),(3036,61,'_wp_old_slug','alternate-practice'),(3037,61,'_edit_lock','1647843703:1'),(3056,56,'_wp_old_slug','portfolio1'),(3057,57,'_wp_old_slug','portfolio2'),(3058,58,'_wp_old_slug','portfolio3'),(3059,59,'_wp_old_slug','portfolio4'),(3060,60,'_wp_old_slug','portfolio5'),(3061,61,'_wp_old_slug','portfolio6'),(3062,298,'_wp_page_template','default'),(3063,298,'_elementor_edit_mode','builder'),(3064,298,'_elementor_template_type','wp-page'),(3065,298,'_elementor_version','3.5.6');
INSERT INTO `wp_postmeta` VALUES (3066,298,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3067,298,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3068,298,'_elementor_page_assets','a:0:{}'),(3070,299,'_wp_page_template','default'),(3071,299,'_elementor_edit_mode','builder'),(3072,299,'_elementor_template_type','wp-page'),(3073,299,'_elementor_version','3.5.6'),(3074,299,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3075,299,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3076,299,'_elementor_page_assets','a:0:{}'),(3078,300,'_wp_page_template','default'),(3079,300,'_elementor_edit_mode','builder'),(3080,300,'_elementor_template_type','wp-page'),(3081,300,'_elementor_version','3.5.6'),(3082,300,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3083,300,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3084,300,'_elementor_page_assets','a:0:{}'),(3086,301,'_wp_page_template','default'),(3087,301,'_elementor_edit_mode','builder'),(3088,301,'_elementor_template_type','wp-page'),(3089,301,'_elementor_version','3.5.6'),(3090,301,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3091,301,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3092,301,'_elementor_page_assets','a:0:{}'),(3093,302,'_wp_page_template','default'),(3094,302,'_elementor_edit_mode','builder'),(3095,302,'_elementor_template_type','wp-page'),(3096,302,'_elementor_version','3.5.6'),(3097,302,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3098,302,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3099,302,'_elementor_page_assets','a:0:{}'),(3100,303,'_wp_page_template','default'),(3101,303,'_elementor_edit_mode','builder'),(3102,303,'_elementor_template_type','wp-page'),(3103,303,'_elementor_version','3.5.6'),(3104,303,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3105,303,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3106,303,'_elementor_page_assets','a:0:{}'),(3108,56,'_elementor_edit_mode','builder'),(3109,56,'_elementor_template_type','wp-post'),(3110,56,'_elementor_version','3.5.6'),(3112,304,'_wp_attached_file','2022/03/naish-logo-2.png'),(3113,304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:113;s:6:\"height\";i:115;s:4:\"file\";s:24:\"2022/03/naish-logo-2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3114,305,'_wp_attached_file','2022/03/cropped-naish-logo-2.png'),(3115,305,'_wp_attachment_context','custom-logo'),(3116,305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:113;s:6:\"height\";i:113;s:4:\"file\";s:32:\"2022/03/cropped-naish-logo-2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3140,310,'_wp_page_template','default'),(3141,310,'_elementor_edit_mode','builder'),(3142,310,'_elementor_template_type','wp-page'),(3143,310,'_elementor_version','3.5.6'),(3144,310,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3145,310,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3146,310,'_elementor_page_assets','a:0:{}'),(3148,311,'_wp_page_template','default'),(3149,311,'_elementor_edit_mode','builder'),(3150,311,'_elementor_template_type','wp-page'),(3151,311,'_elementor_version','3.5.6'),(3152,311,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\",\"title_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3153,311,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3154,311,'_elementor_page_assets','a:0:{}'),(3156,312,'_wp_page_template','default'),(3157,312,'_elementor_edit_mode','builder'),(3158,312,'_elementor_template_type','wp-page'),(3159,312,'_elementor_version','3.5.6'),(3160,312,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]');
INSERT INTO `wp_postmeta` VALUES (3161,312,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3162,312,'_elementor_page_assets','a:0:{}'),(3164,313,'_wp_page_template','default'),(3165,313,'_elementor_edit_mode','builder'),(3166,313,'_elementor_template_type','wp-page'),(3167,313,'_elementor_version','3.5.6'),(3168,313,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3169,313,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3170,313,'_elementor_page_assets','a:0:{}'),(3171,314,'_wp_page_template','default'),(3172,314,'_elementor_edit_mode','builder'),(3173,314,'_elementor_template_type','wp-page'),(3174,314,'_elementor_version','3.5.6'),(3175,314,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3176,314,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3177,314,'_elementor_page_assets','a:0:{}'),(3178,315,'_wp_page_template','default'),(3179,315,'_elementor_edit_mode','builder'),(3180,315,'_elementor_template_type','wp-page'),(3181,315,'_elementor_version','3.5.6'),(3182,315,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3183,315,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3184,315,'_elementor_page_assets','a:0:{}'),(3185,316,'_wp_page_template','default'),(3186,316,'_elementor_edit_mode','builder'),(3187,316,'_elementor_template_type','wp-page'),(3188,316,'_elementor_version','3.5.6'),(3189,316,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3190,316,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3191,316,'_elementor_page_assets','a:0:{}'),(3192,317,'_wp_page_template','default'),(3193,317,'_elementor_edit_mode','builder'),(3194,317,'_elementor_template_type','wp-page'),(3195,317,'_elementor_version','3.5.6'),(3196,317,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1518\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1518\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3197,317,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3198,317,'_elementor_page_assets','a:0:{}'),(3199,318,'_wp_page_template','default'),(3200,318,'_elementor_edit_mode','builder'),(3201,318,'_elementor_template_type','wp-page'),(3202,318,'_elementor_version','3.5.6'),(3203,318,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3204,318,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3205,318,'_elementor_page_assets','a:0:{}'),(3206,319,'_wp_page_template','default'),(3207,319,'_elementor_edit_mode','builder'),(3208,319,'_elementor_template_type','wp-page'),(3209,319,'_elementor_version','3.5.6'),(3210,319,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3211,319,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3212,319,'_elementor_page_assets','a:0:{}'),(3213,320,'_wp_page_template','default'),(3214,320,'_elementor_edit_mode','builder'),(3215,320,'_elementor_template_type','wp-page'),(3216,320,'_elementor_version','3.5.6'),(3217,320,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3218,320,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3219,320,'_elementor_page_assets','a:0:{}'),(3220,321,'_wp_page_template','default'),(3221,321,'_elementor_edit_mode','builder'),(3222,321,'_elementor_template_type','wp-page'),(3223,321,'_elementor_version','3.5.6');
INSERT INTO `wp_postmeta` VALUES (3224,321,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3225,321,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3226,321,'_elementor_page_assets','a:0:{}'),(3227,322,'_wp_page_template','default'),(3228,322,'_elementor_edit_mode','builder'),(3229,322,'_elementor_template_type','wp-page'),(3230,322,'_elementor_version','3.5.6'),(3231,322,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3232,322,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3233,322,'_elementor_page_assets','a:0:{}'),(3234,323,'_wp_page_template','default'),(3235,323,'_elementor_edit_mode','builder'),(3236,323,'_elementor_template_type','wp-page'),(3237,323,'_elementor_version','3.5.6'),(3238,323,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3239,323,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3240,323,'_elementor_page_assets','a:0:{}'),(3241,324,'_wp_page_template','default'),(3242,324,'_elementor_edit_mode','builder'),(3243,324,'_elementor_template_type','wp-page'),(3244,324,'_elementor_version','3.5.6'),(3245,324,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3246,324,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3247,324,'_elementor_page_assets','a:0:{}'),(3248,325,'_wp_page_template','default'),(3249,325,'_elementor_edit_mode','builder'),(3250,325,'_elementor_template_type','wp-page'),(3251,325,'_elementor_version','3.5.6'),(3252,325,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3253,325,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3254,325,'_elementor_page_assets','a:0:{}'),(3255,326,'_wp_page_template','default'),(3256,326,'_elementor_edit_mode','builder'),(3257,326,'_elementor_template_type','wp-page'),(3258,326,'_elementor_version','3.5.6'),(3259,326,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1518\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1518\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3260,326,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3261,326,'_elementor_page_assets','a:0:{}'),(3262,327,'_wp_page_template','default'),(3263,327,'_elementor_edit_mode','builder'),(3264,327,'_elementor_template_type','wp-page'),(3265,327,'_elementor_version','3.5.6'),(3266,327,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3267,327,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3268,327,'_elementor_page_assets','a:0:{}'),(3269,328,'_wp_page_template','default'),(3270,328,'_elementor_edit_mode','builder'),(3271,328,'_elementor_template_type','wp-page'),(3272,328,'_elementor_version','3.5.6'),(3273,328,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3274,328,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3275,328,'_elementor_page_assets','a:0:{}'),(3276,329,'_wp_page_template','default'),(3277,329,'_elementor_edit_mode','builder'),(3278,329,'_elementor_template_type','wp-page'),(3279,329,'_elementor_version','3.5.6'),(3280,329,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1518\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]');
INSERT INTO `wp_postmeta` VALUES (3281,329,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3282,329,'_elementor_page_assets','a:0:{}'),(3283,330,'_wp_page_template','default'),(3284,330,'_elementor_edit_mode','builder'),(3285,330,'_elementor_template_type','wp-page'),(3286,330,'_elementor_version','3.5.6'),(3287,330,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3288,330,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3289,330,'_elementor_page_assets','a:0:{}'),(3291,331,'_wp_attached_file','2022/03/naish-logo-3.png'),(3292,331,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:138;s:6:\"height\";i:140;s:4:\"file\";s:24:\"2022/03/naish-logo-3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3293,332,'_wp_attached_file','2022/03/cropped-naish-logo-3.png'),(3294,332,'_wp_attachment_context','custom-logo'),(3295,332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:138;s:6:\"height\";i:138;s:4:\"file\";s:32:\"2022/03/cropped-naish-logo-3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3317,335,'_wp_page_template','default'),(3318,335,'_elementor_edit_mode','builder'),(3319,335,'_elementor_template_type','wp-page'),(3320,335,'_elementor_version','3.5.6'),(3321,335,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3322,335,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3323,335,'_elementor_page_assets','a:0:{}'),(3325,336,'_wp_page_template','default'),(3326,336,'_elementor_edit_mode','builder'),(3327,336,'_elementor_template_type','wp-page'),(3328,336,'_elementor_version','3.5.6'),(3329,336,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#8F1518\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3330,336,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3331,336,'_elementor_page_assets','a:0:{}'),(3333,337,'_wp_page_template','default'),(3334,337,'_elementor_edit_mode','builder'),(3335,337,'_elementor_template_type','wp-page'),(3336,337,'_elementor_version','3.5.6'),(3337,337,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3338,337,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3339,337,'_elementor_page_assets','a:0:{}'),(3342,338,'_wp_page_template','default'),(3343,338,'_elementor_edit_mode','builder'),(3344,338,'_elementor_template_type','wp-page'),(3345,338,'_elementor_version','3.5.6'),(3346,338,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3347,338,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3348,338,'_elementor_page_assets','a:0:{}'),(3350,339,'_wp_page_template','default'),(3351,339,'_elementor_edit_mode','builder'),(3352,339,'_elementor_template_type','wp-page'),(3353,339,'_elementor_version','3.5.6'),(3354,339,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"2022\",\"icon\":\"check-1\",\"_id\":\"d81f85f\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3355,339,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3356,339,'_elementor_page_assets','a:0:{}'),(3358,340,'_wp_page_template','default'),(3359,340,'_elementor_edit_mode','builder'),(3360,340,'_elementor_template_type','wp-page'),(3361,340,'_elementor_version','3.5.6'),(3362,340,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"e6a588b\",\"text_primary\":\"2022\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3363,340,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3364,340,'_elementor_page_assets','a:0:{}'),(3366,341,'_wp_page_template','default'),(3367,341,'_elementor_edit_mode','builder'),(3368,341,'_elementor_template_type','wp-page'),(3369,341,'_elementor_version','3.5.6'),(3370,341,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"e6a588b\",\"text_primary\":\"2022\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3371,341,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3372,341,'_elementor_page_assets','a:0:{}'),(3373,342,'_wp_page_template','default'),(3374,342,'_elementor_edit_mode','builder'),(3375,342,'_elementor_template_type','wp-page'),(3376,342,'_elementor_version','3.5.6'),(3377,342,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"e6a588b\",\"text_primary\":\"2022\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]');
INSERT INTO `wp_postmeta` VALUES (3378,342,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3379,342,'_elementor_page_assets','a:0:{}'),(3380,343,'_wp_page_template','default'),(3381,343,'_elementor_edit_mode','builder'),(3382,343,'_elementor_template_type','wp-page'),(3383,343,'_elementor_version','3.5.6'),(3384,343,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3385,343,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3386,343,'_elementor_page_assets','a:0:{}'),(3387,344,'_wp_page_template','default'),(3388,344,'_elementor_edit_mode','builder'),(3389,344,'_elementor_template_type','wp-page'),(3390,344,'_elementor_version','3.5.6'),(3391,344,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3392,344,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3393,344,'_elementor_page_assets','a:0:{}'),(3394,345,'_wp_page_template','default'),(3395,345,'_elementor_edit_mode','builder'),(3396,345,'_elementor_template_type','wp-page'),(3397,345,'_elementor_version','3.5.6'),(3398,345,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3399,345,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3400,345,'_elementor_page_assets','a:0:{}'),(3401,346,'_wp_page_template','default'),(3402,346,'_elementor_edit_mode','builder'),(3403,346,'_elementor_template_type','wp-page'),(3404,346,'_elementor_version','3.5.6'),(3405,346,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"e6a588b\",\"text_primary\":\"2022\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\",\"divider\":\"\",\"icon_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3406,346,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3407,346,'_elementor_page_assets','a:0:{}'),(3409,347,'_wp_page_template','default'),(3410,347,'_elementor_edit_mode','builder'),(3411,347,'_elementor_template_type','wp-page'),(3412,347,'_elementor_version','3.5.6'),(3413,347,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"e6a588b\",\"text_primary\":\"2022\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\",\"divider\":\"\",\"icon_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3414,347,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3415,347,'_elementor_page_assets','a:0:{}'),(3417,348,'_wp_page_template','default'),(3418,348,'_elementor_edit_mode','builder'),(3419,348,'_elementor_template_type','wp-page'),(3420,348,'_elementor_version','3.5.6'),(3421,348,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"e6a588b\",\"text_primary\":\"2022\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\",\"divider\":\"\",\"icon_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3422,348,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3423,348,'_elementor_page_assets','a:0:{}'),(3425,349,'_wp_page_template','default'),(3426,349,'_elementor_edit_mode','builder'),(3427,349,'_elementor_template_type','wp-page'),(3428,349,'_elementor_version','3.5.6'),(3429,349,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"},{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3430,349,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3431,349,'_elementor_page_assets','a:0:{}'),(3440,351,'_wp_page_template','default'),(3441,351,'_elementor_edit_mode','builder'),(3442,351,'_elementor_template_type','wp-page'),(3443,351,'_elementor_version','3.5.6'),(3444,351,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"},{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3445,351,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3446,351,'_elementor_page_assets','a:0:{}'),(3447,352,'_wp_page_template','default'),(3448,352,'_elementor_edit_mode','builder'),(3449,352,'_elementor_template_type','wp-page'),(3450,352,'_elementor_version','3.5.6'),(3451,352,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"},{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]');
INSERT INTO `wp_postmeta` VALUES (3452,352,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3453,352,'_elementor_page_assets','a:0:{}'),(3454,353,'_wp_page_template','default'),(3455,353,'_elementor_edit_mode','builder'),(3456,353,'_elementor_template_type','wp-page'),(3457,353,'_elementor_version','3.5.6'),(3458,353,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join\",\"display_advanced\":\"yes\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3459,353,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3460,353,'_elementor_page_assets','a:0:{}'),(3462,354,'_wp_page_template','default'),(3463,354,'_elementor_edit_mode','builder'),(3464,354,'_elementor_template_type','wp-page'),(3465,354,'_elementor_version','3.5.6'),(3466,354,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join\",\"display_advanced\":\"yes\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3467,354,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3468,354,'_elementor_page_assets','a:0:{}'),(3470,355,'_wp_page_template','default'),(3471,355,'_elementor_edit_mode','builder'),(3472,355,'_elementor_template_type','wp-page'),(3473,355,'_elementor_version','3.5.6'),(3474,355,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join\",\"display_advanced\":\"yes\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3475,355,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3476,355,'_elementor_page_assets','a:0:{}'),(3478,356,'_wp_page_template','default'),(3479,356,'_elementor_edit_mode','builder'),(3480,356,'_elementor_template_type','wp-page'),(3481,356,'_elementor_version','3.5.6'),(3482,356,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"},{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3483,356,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3484,356,'_elementor_page_assets','a:0:{}'),(3486,357,'_wp_page_template','default'),(3487,357,'_elementor_edit_mode','builder'),(3488,357,'_elementor_template_type','wp-page'),(3489,357,'_elementor_version','3.5.6'),(3490,357,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"},{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3491,357,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3492,357,'_elementor_page_assets','a:0:{}'),(3493,358,'_wp_page_template','default'),(3494,358,'_elementor_edit_mode','builder'),(3495,358,'_elementor_template_type','wp-page'),(3496,358,'_elementor_version','3.5.6'),(3497,358,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"},{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3498,358,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3499,358,'_elementor_page_assets','a:0:{}'),(3500,359,'_wp_page_template','default'),(3501,359,'_elementor_edit_mode','builder'),(3502,359,'_elementor_template_type','wp-page'),(3503,359,'_elementor_version','3.5.6'),(3504,359,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join\",\"display_advanced\":\"yes\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3505,359,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3506,359,'_elementor_page_assets','a:0:{}'),(3508,360,'_wp_page_template','default'),(3509,360,'_elementor_edit_mode','builder'),(3510,360,'_elementor_template_type','wp-page'),(3511,360,'_elementor_version','3.5.6'),(3512,360,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join\",\"display_advanced\":\"yes\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3513,360,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3514,360,'_elementor_page_assets','a:0:{}'),(3516,361,'_wp_page_template','default'),(3517,361,'_elementor_edit_mode','builder'),(3518,361,'_elementor_template_type','wp-page'),(3519,361,'_elementor_version','3.5.6'),(3520,361,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":\"792\",\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join\",\"display_advanced\":\"yes\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]');
INSERT INTO `wp_postmeta` VALUES (3521,361,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3522,361,'_elementor_page_assets','a:0:{}'),(3524,362,'_wp_page_template','default'),(3525,362,'_elementor_edit_mode','builder'),(3526,362,'_elementor_template_type','wp-page'),(3527,362,'_elementor_version','3.5.6'),(3528,362,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3529,362,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3530,362,'_elementor_page_assets','a:0:{}'),(3533,363,'auxin-autop','no'),(3534,363,'_menu_item_type','custom'),(3535,363,'_menu_item_menu_item_parent','0'),(3536,363,'_menu_item_object_id','363'),(3537,363,'_menu_item_object','custom'),(3538,363,'_menu_item_target',''),(3539,363,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3540,363,'_menu_item_xfn',''),(3541,363,'_menu_item_url','http://demoweblinks.in/naishautomation/#testimonials'),(3543,364,'auxin-autop','no'),(3544,364,'_menu_item_type','custom'),(3545,364,'_menu_item_menu_item_parent','0'),(3546,364,'_menu_item_object_id','364'),(3547,364,'_menu_item_object','custom'),(3548,364,'_menu_item_target',''),(3549,364,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3550,364,'_menu_item_xfn',''),(3551,364,'_menu_item_url','#'),(3553,363,'_menu_item_megamenu','0'),(3554,363,'_menu_item_nolink','0'),(3555,363,'_menu_item_hide_label','0'),(3556,363,'_menu_item_icon',''),(3557,363,'_menu_item_icon_align',''),(3558,363,'_menu_item_row_start','0'),(3559,363,'_menu_item_hide_title','0'),(3560,363,'_menu_item_col_num',''),(3561,363,'_menu_item_hide_desktop','0'),(3562,363,'_menu_item_hide_tablet','0'),(3563,363,'_menu_item_hide_mobile','0'),(3564,363,'_menu_item_sec_text',''),(3565,363,'_menu_item_sec_bg_color',''),(3566,363,'_menu_item_custom_style',''),(3567,363,'_menu_item_aux_background_image',''),(3568,363,'_menu_item_link_path',''),(3569,364,'_menu_item_megamenu','0'),(3570,364,'_menu_item_nolink','0'),(3571,364,'_menu_item_hide_label','0'),(3572,364,'_menu_item_icon',''),(3573,364,'_menu_item_icon_align',''),(3574,364,'_menu_item_row_start','0'),(3575,364,'_menu_item_hide_title','0'),(3576,364,'_menu_item_col_num',''),(3577,364,'_menu_item_hide_desktop','0'),(3578,364,'_menu_item_hide_tablet','0'),(3579,364,'_menu_item_hide_mobile','0'),(3580,364,'_menu_item_sec_text',''),(3581,364,'_menu_item_sec_bg_color',''),(3582,364,'_menu_item_custom_style',''),(3583,364,'_menu_item_aux_background_image',''),(3584,364,'_menu_item_link_path',''),(3587,366,'_wp_page_template','default'),(3588,366,'_elementor_edit_mode','builder'),(3589,366,'_elementor_template_type','wp-page'),(3590,366,'_elementor_version','3.5.6'),(3591,366,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3592,366,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3593,366,'_elementor_page_assets','a:0:{}'),(3595,367,'_wp_page_template','default'),(3596,367,'_elementor_edit_mode','builder'),(3597,367,'_elementor_template_type','wp-page'),(3598,367,'_elementor_version','3.5.6'),(3599,367,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3600,367,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3601,367,'_elementor_page_assets','a:0:{}'),(3603,368,'_wp_page_template','default'),(3604,368,'_elementor_edit_mode','builder'),(3605,368,'_elementor_template_type','wp-page'),(3606,368,'_elementor_version','3.5.6'),(3607,368,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3608,368,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3609,368,'_elementor_page_assets','a:0:{}'),(3645,61,'_elementor_edit_mode','builder'),(3646,61,'_elementor_template_type','wp-post'),(3647,61,'_elementor_version','3.5.6'),(3649,61,'_thumbnail_id','11'),(3650,375,'_wp_page_template','default'),(3651,375,'_elementor_edit_mode','builder'),(3652,375,'_elementor_template_type','wp-page'),(3653,375,'_elementor_version','3.5.6'),(3654,375,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3655,375,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3656,375,'_elementor_page_assets','a:0:{}'),(3658,376,'_wp_page_template','default'),(3659,376,'_elementor_edit_mode','builder'),(3660,376,'_elementor_template_type','wp-page'),(3661,376,'_elementor_version','3.5.6'),(3662,376,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F8E7B7\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3663,376,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3664,376,'_elementor_page_assets','a:0:{}'),(3666,377,'_wp_page_template','default'),(3667,377,'_elementor_edit_mode','builder'),(3668,377,'_elementor_template_type','wp-page'),(3669,377,'_elementor_version','3.5.6'),(3670,377,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3671,377,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3672,377,'_elementor_page_assets','a:0:{}'),(3675,378,'_wp_page_template','default'),(3676,378,'_elementor_edit_mode','builder'),(3677,378,'_elementor_template_type','wp-page'),(3678,378,'_elementor_version','3.5.6'),(3679,378,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3680,378,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3681,378,'_elementor_page_assets','a:0:{}'),(3683,379,'_wp_page_template','default'),(3684,379,'_elementor_edit_mode','builder'),(3685,379,'_elementor_template_type','wp-page'),(3686,379,'_elementor_version','3.5.6'),(3687,379,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]');
INSERT INTO `wp_postmeta` VALUES (3688,379,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3689,379,'_elementor_page_assets','a:0:{}'),(3691,380,'_wp_page_template','default'),(3692,380,'_elementor_edit_mode','builder'),(3693,380,'_elementor_template_type','wp-page'),(3694,380,'_elementor_version','3.5.6'),(3695,380,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"cat\":[]},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3696,380,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3697,380,'_elementor_page_assets','a:0:{}'),(3699,381,'_wp_page_template','default'),(3700,381,'_elementor_edit_mode','builder'),(3701,381,'_elementor_template_type','wp-page'),(3702,381,'_elementor_version','3.5.6'),(3703,381,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"cat\":[]},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3704,381,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3705,381,'_elementor_page_assets','a:0:{}'),(3706,382,'_wp_page_template','default'),(3707,382,'_elementor_edit_mode','builder'),(3708,382,'_elementor_template_type','wp-page'),(3709,382,'_elementor_version','3.5.6'),(3710,382,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"6\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"cat\":[]},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3711,382,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3712,382,'_elementor_page_assets','a:0:{}'),(3713,383,'_wp_page_template','default'),(3714,383,'_elementor_edit_mode','builder'),(3715,383,'_elementor_template_type','wp-page'),(3716,383,'_elementor_version','3.5.6'),(3717,383,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"cat\":[]},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3718,383,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3719,383,'_elementor_page_assets','a:0:{}'),(3720,384,'_wp_page_template','default'),(3721,384,'_elementor_edit_mode','builder'),(3722,384,'_elementor_template_type','wp-page'),(3723,384,'_elementor_version','3.5.6'),(3724,384,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"cat\":[]},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3725,384,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3726,384,'_elementor_page_assets','a:0:{}'),(3727,385,'_wp_page_template','default'),(3728,385,'_elementor_edit_mode','builder'),(3729,385,'_elementor_template_type','wp-page'),(3730,385,'_elementor_version','3.5.6'),(3731,385,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"cat\":[]},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3732,385,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3733,385,'_elementor_page_assets','a:0:{}'),(3734,386,'_wp_page_template','default'),(3735,386,'_elementor_edit_mode','builder'),(3736,386,'_elementor_template_type','wp-page'),(3737,386,'_elementor_version','3.5.6'),(3738,386,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\",\"cat\":[]},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3739,386,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3740,386,'_elementor_page_assets','a:0:{}'),(3744,387,'_wp_page_template','default'),(3745,387,'_elementor_edit_mode','builder'),(3746,387,'_elementor_template_type','wp-page'),(3747,387,'_elementor_version','3.5.6'),(3748,387,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\",\"cat\":[]},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3749,387,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3750,387,'_elementor_page_assets','a:0:{}'),(3752,388,'_wp_page_template','default'),(3753,388,'_elementor_edit_mode','builder'),(3754,388,'_elementor_template_type','wp-page'),(3755,388,'_elementor_version','3.5.6'),(3756,388,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\",\"cat\":[]},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]');
INSERT INTO `wp_postmeta` VALUES (3757,388,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3758,388,'_elementor_page_assets','a:0:{}'),(3760,389,'_wp_page_template','default'),(3761,389,'_elementor_edit_mode','builder'),(3762,389,'_elementor_template_type','wp-page'),(3763,389,'_elementor_version','3.5.6'),(3764,389,'_elementor_data','[{\"id\":\"3ab8b5f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#F6F6F6\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2018100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"8609713\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"130\",\"sizes\":[]},\"_height\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"custom_css\":\"selector{\\n    height: 100%;\\n    background-color: var(--e-global-color-7036ef2);\\n}\",\"hide_mobile\":\"hidden-phone\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=7036ef2\"}},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"862ba10\",\"elType\":\"widget\",\"settings\":{\"shape_type\":\"rectangle\",\"_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"_width_tablet\":{\"unit\":\"px\",\"size\":\"450\",\"sizes\":[]},\"_width_mobile\":{\"unit\":\"px\",\"size\":\"200\",\"sizes\":[]},\"_height\":{\"unit\":\"px\",\"size\":886,\"sizes\":[]},\"_height_tablet\":{\"unit\":\"px\",\"size\":\"600\",\"sizes\":[]},\"_height_mobile\":{\"unit\":\"px\",\"size\":\"400\",\"sizes\":[]},\"shape_background_background\":\"classic\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"px\",\"size\":\"-35\",\"sizes\":[]},\"__globals__\":{\"shape_background_color\":\"globals\\/colors?id=secondary\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (min-width:2000px){\\n    selector .aux-the-shape{\\n        width:900px;\\n    }\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-the-shape{\\n        width:500px;\\n    }\\n}\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_simple_shape\"},{\"id\":\"f471d95\",\"elType\":\"widget\",\"settings\":{\"title\":\"naish auto.\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"160\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"90\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"54\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(112, 112, 112, 0.1);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n    selector{\\n        top:350px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector .aux-modern-heading-primary{\\n        font-size:120px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"%\",\"size\":\"57\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"%\",\"size\":\"59.5\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"45\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1800,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\",\"title_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e6bcc6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"324d9f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":\"\"},\"_inline_size\":\"53.5\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"91933d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"title_secondary_before\":\"One Stop For<br>\",\"title_secondary_highlight\":\"Automation\",\"title_tag_secondary\":\"h2\",\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_text_transform\":\"capitalize\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.1\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"88\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_typography_text_transform\":\"none\",\"title2_highlighted_color\":\"rgb(143, 21, 24)\",\"__globals__\":{\"title2_typography_typography\":\"\",\"title2_color\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_highlighted_typography_typography\":\"\"},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"title2_width_tablet\":{\"unit\":\"px\",\"size\":\"683\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"76\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"42\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-head-after{\\n    color: #4B4B4B;\\n}\\n@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector .aux-head-highlight , selector .aux-modern-heading-secondary{\\n        font-size:76px !important;\\n    }\\n}\",\"__dynamic__\":[],\"title_secondary_after\":\".\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title2_color\":\"#9B9890\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"aea36bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/homeentrance02_03-12361.png\",\"id\":\"46\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_position_type\":\"relative\",\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-23\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_left_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        left:-17%;\\n    }\\n}\",\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":1000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ced9eeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring<\\/p>\",\"__globals__\":{\"description_color\":\"\",\"description_typography_typography\":\"\"},\"description_color\":\"#4B4B4BA6\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"619\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"45da109\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#FF7E44\",\"btn_bg_hover_color\":\"#191919\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":2300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"1\"},{\"id\":\"71c38ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"align\":\"space-between\",\"_inline_size_tablet\":\"100\",\"_inline_size\":\"46.433\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"be33735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/tim-durgan-2P3eh98tY2s-unsplash.png\",\"id\":\"47\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"_element_width\":\"auto\",\"aux_max_width_tablet\":{\"unit\":\"%\",\"size\":\"90\",\"sizes\":[]},\"aux_max_width_mobile\":{\"unit\":\"%\",\"size\":\"85\",\"sizes\":[]},\"custom_css\":\"@media screen and (max-width:1500px) and (min-width:1025px){\\n    selector{\\n        width:88%\\n    }\\n}\\n@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:75%\\n    }\\n}\",\"image_max_width_tablet\":{\"unit\":\"%\",\"size\":\"86\",\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveVertical\",\"aux_parallax_out_anims\":\"moveVertical\",\"aux_parallax_vertical_transform\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3500,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"476ab2b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"_id\":\"81ac2e7\",\"text_primary\":\"Join Us\"},{\"text_primary\":\"TW\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"8b87ee0\"},{\"text_primary\":\"IG\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"0ce9065\"},{\"text_primary\":\"FB\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"3be986e\"},{\"text_primary\":\"LN\",\"icon\":\"check-1\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"_id\":\"33c5894\"}],\"direction\":\"vertical\",\"align\":\"\",\"list_items_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"connector\":\"\",\"text1_color\":\"#000000\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Mukta\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"21\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text1_typography_font_weight\":\"500\",\"text1_typography_text_transform\":\"uppercase\",\"_element_width\":\"auto\",\"aux_position_type\":\"absolute\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"-25\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-10\",\"sizes\":[]},\"custom_css\":\"selector ul li:first-child:after{\\n    content: \'\';\\n    width: 1px;\\n    height: 700px;\\n    background-color: #191919;\\n    display: block;\\n    position: relative;\\n    left: -30px;\\n    top: 30px;\\n    margin: 20px 0;\\n}\\nselector li:first-child:hover .aux-icon-list-text {\\n    color: #191919;\\n}\\n@media screen and (max-width:1600px) and (min-width:1025px){\\n    selector{\\n        right:-10px;\\n    }\\n}\\n@media screen and (max-width:1440px){\\n    selector ul li:first-child:after{\\n        height:500px;\\n    }\\n}\\n\\n@media screen and (max-width:900px){\\n    selector ul li:first-child:after{\\n        height:300px;\\n    }\\n}\\n@media screen and (max-width:767px){\\n    selector ul li:first-child:after{\\n        height:230px;\\n        left:-20px;\\n        margin:5px 0 20px 0;\\n    }\\n}\",\"__globals__\":{\"text1_color\":\"\",\"text1_typography_typography\":\"\",\"text1_hover_color\":\"\"},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"aux_position_right_mobile\":{\"unit\":\"px\",\"size\":\"10\",\"sizes\":[]},\"aux_animation_name\":\"aux-mask-from-top\",\"aux_animation_duration\":3000,\"aux_animation_delay\":800,\"aux_animation_easing\":\"0.77,0,0.175,1\",\"text1_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3d6b07d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10c0580\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"007d3ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We turn \",\"title_secondary_highlight\":\"ideas into \",\"title_secondary_after\":\"works of automation\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#9B9890\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_width\":{\"unit\":\"px\",\"size\":\"361\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"550\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"e0fb1ba\",\"elType\":\"widget\",\"settings\":{\"label\":\"READ MORE\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"39\",\"bottom\":\"15\",\"left\":\"35\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"},{\"id\":\"071ae2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n    }\\n}\"},\"elements\":[{\"id\":\"010ba46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/connor-wang-MNz7IGrcEl0-unsplash.png\",\"id\":\"45\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"},{\"id\":\"ea1df56\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"Beautiful Home\",\"icon\":\"check-1\",\"_id\":\"28aa0eb\",\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}},{\"text_primary\":\"\",\"icon\":\"check-1\",\"_id\":\"069fc08\",\"aux_custom_list_icon\":{\"value\":\"auxicon auxicon-playback-play\",\"library\":\"auxin-front-icon\"},\"text_secondary\":\"Watch Video\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_item_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"icon_item_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_primary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"},\"text_secondary_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":\"1\"}}],\"align\":\"flex-start\",\"connector\":\"\",\"text1_color\":\"#FFFFFF\",\"text1_typography_typography\":\"custom\",\"text1_typography_font_family\":\"Heebo\",\"text1_typography_font_size\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"text1_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"text1_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"text1_typography_text_transform\":\"capitalize\",\"text1_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"text2_color\":\"#FFFFFF\",\"text2_typography_typography\":\"custom\",\"text2_typography_font_family\":\"Mukta\",\"text2_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"text2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"text2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text2_typography_font_weight\":\"400\",\"text2_typography_text_transform\":\"capitalize\",\"icon_size\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_margin\":{\"unit\":\"px\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"7\",\"isLinked\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"37\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_background_color\":\"#FF7E44\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"aux_position_type\":\"absolute\",\"aux_position_bottom\":{\"unit\":\"%\",\"size\":\"10\",\"sizes\":[]},\"aux_position_bottom_mobile\":{\"unit\":\"%\",\"size\":\"15\",\"sizes\":[]},\"aux_position_left\":{\"unit\":\"%\",\"size\":\"-20\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"%\",\"size\":\"-15\",\"sizes\":[]},\"custom_css\":\"selector .aux-icon-list-icon{\\n    background-color: #fff;\\n    border-radius: 100%;\\n}\\nselector li:first-child:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: #fff;\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    bottom:-18px;\\n}\\n@media screen and (max-width:1024px){\\n    selector{\\n        bottom: -12px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector{\\n        left:10%;\\n    }\\n}\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"icon_background_color\":\"\",\"text1_color\":\"globals\\/colors?id=accent\",\"text1_typography_typography\":\"\",\"text2_color\":\"globals\\/colors?id=accent\",\"text2_typography_typography\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\"},\"aux_parallax_anims_enable\":\"yes\",\"aux_parallax_in_anims\":\"moveHorizontal\",\"aux_parallax_out_anims\":\"moveHorizontal\",\"aux_parallax_horizontal_transform\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"aux_parallax_animation_easing\":\"0.165,0.84,0.44,1\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":700,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"292101b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"04a115a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"26841ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our procces\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"232\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"110\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"52\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-modern-heading-primary{\\n        font-size:160px;\\n    }\\n    selector{\\n        right:-8%;\\n        top:50px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_element_width\":\"auto\",\"aux_position_top\":{\"unit\":\"px\",\"size\":\"100\",\"sizes\":[]},\"aux_position_right\":{\"unit\":\"%\",\"size\":\"-12\",\"sizes\":[]},\"aux_position_top_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"aux_position_top_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"aux_position_right_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_position_left_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_delay\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7e83d14c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"111c6ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"1fb968a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Naish Automation\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#8F1417\",\"title_background_background\":\"gradient\",\"title_background_color_b\":\"#8F1417\",\"title_hover_background_background\":\"gradient\",\"title_hover_background_color_b\":\"#8F1518\",\"title_stroke_text_stroke_type\":\"yes\",\"title_stroke_stroke_color\":\"#8F1417\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"3cb04604\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5208fdf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7624826d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"3a3cbf8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"7652f199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65783a92\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"631ed3aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"401c5ee5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"679f2872\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"c0386ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6e768c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"c07d3d4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"78426768\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"478f50f\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"602d7f91\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in automation\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6f35763c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"25779870\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"62d3c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"26349110\",\"elType\":\"widget\",\"settings\":{\"title\":\"design perfect solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"7fe50965\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3d726630\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"51c42ec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"ccf22ae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"8e57087\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"195\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"90\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"db4efe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"ee31ac4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"9eb4aae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"b975bd2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#000000\",\"title2_width\":{\"unit\":\"px\",\"size\":\"386\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"ebcf4bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"content_position\":\"bottom\",\"align\":\"flex-end\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"e00c849\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-portfolio\",\"navigation_align\":\"flex-end\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"34656f7\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"carousel_navigation_control\":\"\",\"carousel_navigation_control_text_next\":\"Next\",\"carousel_navigation_control_text_prev\":\"Prev\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#A2A2A2\",\"info_typography_typography\":\"custom\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: absolute;\\n    top: auto;\\n    bottom:-50px;\\n    left: 0;\\n    right:0;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .aux-mc-item:nth-child(2n) .entry-main{\\n    position: absolute;\\n    top: -50px;\\n    bottom: auto;\\n    left: 0;\\n    right: 0;\\n}\\nselector .aux-portfolio-carousel{\\n    overflow: visible;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: var( --e-global-color-accent );\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-mc-item:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-mc-item:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-mc-item:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size: 24px !important;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 30px 10px 35px 35px;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_hover_color\":\"\"},\"columns_tablet\":\"2\",\"preloadable\":\"yes\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"_css_classes\":\"aux-carouse-portfolio\",\"carousel_loop\":\"\",\"num\":\"\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":1500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\",\"cat\":[]},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid_carousel\"},{\"id\":\"b00afb2\",\"elType\":\"widget\",\"settings\":{\"label\":\"View All Products\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"35\",\"bottom\":\"15\",\"left\":\"36\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"\",\"btn_bg_hover_color\":\"globals\\/colors?id=secondary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#9B9890\",\"btn_bg_hover_color\":\"rgb(143, 21, 24)\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"capitalize\",\"btn_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"link\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/products\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"fdea116\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"testimonials\"},\"elements\":[{\"id\":\"27ac512\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"25\",\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n    }\\n}\"},\"elements\":[{\"id\":\"d9ef7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonial\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Our Client \",\"title_secondary_highlight\":\"say.\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#9B9890\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#8F1417\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"377\",\"sizes\":[]},\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f7874af\",\"elType\":\"widget\",\"settings\":{\"nav_type\":\"custom\",\"prev_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-left\",\"library\":\"auxin-front-icon2\"},\"next_icon\":{\"value\":\"auxicon2 auxicon2-arrow-medium-right\",\"library\":\"auxin-front-icon2\"},\"nav_target\":\".aux-carouse-testimonial\",\"navigation_align\":\"flex-start\",\"navigation_align_mobile\":\"flex-start\",\"icon_bg_background\":\"classic\",\"icon_size\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":\"1\"},\"icon_padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"13\",\"left\":\"13\",\"isLinked\":\"1\"},\"icon_hover_bg_background\":\"classic\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_bg_color\":\"\",\"icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"navigation_gap\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"icon_bg_color\":\"#9B9890\",\"icon_color\":\"#FFFFFF\",\"icon_hover_bg_color\":\"rgb(143, 21, 24)\"},\"elements\":[],\"widgetType\":\"aux_carousel_navigation\"}],\"isInner\":\"\"},{\"id\":\"0338106\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"_inline_size\":\"75\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"@media screen and (max-width:900px) and (min-width:768px){\\n    selector{\\n        width:100%;\\n        margin-top:50px;\\n        margin-left:-25px;\\n    }\\n}\"},\"elements\":[{\"id\":\"df331d0\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"_id\":\"71fa514\",\"template\":\"53\"},{\"template\":\"52\",\"_id\":\"149ffc5\"},{\"template\":\"51\",\"_id\":\"c11aa61\"},{\"template\":\"53\",\"_id\":\"0ac4abb\"}],\"carousel_space\":\"10\",\"carousel_navigation_control\":\"\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_css_classes\":\"aux-carouse-testimonial\",\"custom_css\":\"selector .master-carousel{\\n    overflow: initial;\\n}\",\"columns_tablet\":\"2\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2500,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_flexible_carousel\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"73a71689\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":300,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1920,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":50,\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"layout\":\"full_width\",\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"2895540c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c0d17fb\",\"elType\":\"section\",\"settings\":{\"structure\":20,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"section_parallax_elements\":[]},\"elements\":[{\"id\":\"16d1e6ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":83.114000000000004320099833421409130096435546875,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"55982c4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Gallery .\",\"title_color\":\"#8F1417\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"title_typography_font_weight\":700,\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"title_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":25,\"left\":0,\"isLinked\":false},\"divider_weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":53,\"sizes\":[]},\"divider_color\":\"#0c0c0c\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":true},{\"id\":\"1a41b314\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":16.885999999999999232613845379091799259185791015625,\"_inline_size_tablet\":30,\"align\":\"flex-end\"},\"elements\":[{\"id\":\"2af3d3a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":500,\"typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"background_color\":\"#8F1417\",\"border_radius\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":20,\"right\":87,\"bottom\":20,\"left\":28,\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"custom_css\":\"\\/* btn line *\\/\\n\\nselector .elementor-button-wrapper a {\\n    width: 195px;\\n    text-align: left;\\n}\\n\\nselector .elementor-button-content-wrapper {\\n    position: relative;\\n}\\n\\nselector .elementor-button-content-wrapper::after {\\n    content: \\\"\\\";\\n    height: 1px;\\n    display: inline-block;\\n    background-color: #FFF;\\n    position: absolute;\\n    top: 10px;\\n    margin-left: 29px;\\n    width: 32px;\\n    transition: width 0.6s ease;\\n}\\n\\nselector:hover .elementor-button-content-wrapper::after {\\n    width: 68px;\\n}\\n\\n\",\"_element_width\":\"auto\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_widget_parallax_x_value\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_widget_parallax_y_value\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_widget_parallax_viewport_value\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5b54f52f\",\"elType\":\"widget\",\"settings\":{\"columns\":5,\"space\":\"\",\"image_aspect_ratio\":1.3300000000000000710542735760100185871124267578125,\"item_style\":\"overlay-lightbox\",\"item_hover_style_background\":\"classic\",\"item_hover_style_color\":\"rgba(12,12,12,0.9)\",\"custom_css\":\"@media screen and (min-width:1430px) {\\nselector .aux-widget-recent-portfolios .aux-filters {\\n    top: -80px;\\n    left: 43%;\\n    }\\n}\\n\\nselector .aux-filters li {\\n    font-family: Montserrat;\\n    font-size: 16px;\\n    font-weight: 400;\\n}\\n\\nselector .aux-filters.aux-slideup li>a span {\\n    padding: 0 1.5em;\\n}\\n\\nselector .aux-iso-item {\\n    margin-bottom: 0 !important;\\n    transition: box-shadow 500ms ease-in-out;\\n}\\n\\nselector .aux-iso-item:hover {\\n    box-shadow: 0 3px 70px rgba(0, 0, 0, 0.3);\\n}\\n\\nselector .aux-isotope-animated {\\n    overflow: visible;\\n}\\n\\nselector .aux-arrow-post-link  {\\n    display: none;\\n}\\n\\nselector .type-portfolio.hentry .entry-main {\\n    opacity:0;\\n    position: absolute;\\n    margin: 0;\\n    opacity: 0;\\n    position: absolute;\\n    width: 27%;\\n    height: 64%;\\n    left: 15%;\\n    bottom: 0;\\n    overflow: hidden;\\n    background-color: rgba(0,0,0,0.9);\\n    transition: all 500ms;\\n}\\n\\nselector .entry-main::after {\\n    content: \'\';\\n    display: block;\\n    position: absolute;\\n    top: 0;\\n    left: 0;\\n    width: 100%;\\n    height: 100%;\\n    z-index: 2;\\n    box-shadow: 0px 20px 30px #000 inset;\\n    pointer-events: none;\\n    transition: all 500ms;\\n}\\n\\nselector .entry-info {\\n    position: absolute;\\n    margin-bottom: 0;\\n    transform: rotate(-90deg);\\n    transform-origin: left;\\n    left: 37%;\\n    bottom: 5%;\\n}\\n\\nselector .entry-tax {\\n    min-width: 450px;\\n    white-space: nowrap;\\n}\\n\\nselector .entry-tax a {\\n    color: #FFF;\\n}\\n\\nselector .aux-arrow-nav.aux-round .aux-overlay {\\n    transition-duration: 500ms;\\n}\\n\\nselector .entry-header {\\n    white-space: nowrap;\\n    position: absolute;\\n    bottom: -53px;\\n    left: 60%;\\n    transform-origin: left;\\n    transform: rotate(-90deg);\\n}\\n\\n\\nselector .aux-hover-circle-plus {\\n    transform: none;\\n    width: 100%;\\n    transition: opacity 500ms !important;\\n    position: relative;\\n}\\n\\nselector .aux-arrow-nav.aux-round.aux-semi-small {\\n    box-shadow: none;\\n    border-radius: 0;\\n    background-color: rgba(0,0,0,0.9);\\n    width: 100%;\\n    padding-top: 100%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover {\\n    background-color: #FFF !important;\\n}\\n\\nselector .type-portfolio.hentry .entry-main .entry-title a {\\n    line-height: 106px;\\n    display: inline-block;\\n    min-width: 500px;\\n    padding-left: 28%;\\n}\\n\\nselector .type-portfolio.hentry .entry-main:hover a {\\n    color: #000;\\n}\\n\\nselector .entry-main:hover::after {\\n    box-shadow: 0px 20px 30px #FFF inset;\\n}\\n\\nselector .entry-title a:hover {\\n    color: rgba(0,0,0,0.8) !important;\\n}\\n\\nselector .type-portfolio.hentry:hover .entry-main {\\n        opacity:1;\\n}\\n\\nselector .aux-widget-recent-portfolios .aux-portfolio-columns .aux-overlay-content {\\n    transform: none;\\n    top: 0;\\n    bottom: 0;\\n    padding:0;\\n}\\n\\nselector .aux-frame-darken::after {\\n    display: none\\n}\\n\\nselector .aux-overlay-content {\\n    top: 0;\\n    left: 0;\\n    transform: none;\\n    padding: 0;\\n    height: 100%;\\n    text-align: left;\\n}\\n\\nselector .aux-arrow-nav.aux-outline.aux-white .aux-overlay::after {\\n    background-color: #FFF;\\n    border-radius: 0;\\n}\\n\\n\\nselector .aux-portfolio-overlay-buttons {\\n    width: auto;\\n    position: absolute;\\n    left: 15%;\\n    right: 58%;\\n}\\n\\nselector .aux-hover-circle-plus  > a {\\n    display: block;\\n    margin: 0;\\n    \\n}\\n\",\"paginate\":\"\",\"num\":5,\"_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":70,\"spread\":0,\"color\":\"rgba(0,0,0,0.3)\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"columns_tablet\":3,\"columns_mobile\":2,\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_font_weight\":600,\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1,\"sizes\":[]},\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Montserrat\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"info_typography_font_weight\":500,\"info_typography_font_style\":\"normal\",\"info_typography_line_height\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"info_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b1d1bf8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":170,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":0,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":0,\"right\":35,\"bottom\":0,\"left\":35,\"isLinked\":false}},\"elements\":[{\"id\":\"15d39158\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c588424\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"50\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#FFFFFF\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":20,\"right\":20,\"bottom\":20,\"left\":20,\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":103,\"right\":75,\"bottom\":94,\"left\":70,\"isLinked\":false},\"background_overlay_size_tablet\":\"cover\"},\"elements\":[{\"id\":\"253c677a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b31fed3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":614,\"thousand_separator\":\"\",\"title\":\"Products\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"counter-title\":\"Products\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7e263a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36fc85c1\",\"elType\":\"widget\",\"settings\":{\"ending_number\":970,\"thousand_separator\":\"\",\"title\":\"Happy Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":150,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5d7350b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee562c\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"thousand_separator\":\"\",\"title\":\"Clients\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"274873a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"2696ec91\",\"elType\":\"widget\",\"settings\":{\"ending_number\":15,\"thousand_separator\":\"\",\"title\":\"Project Launched\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"711cdaf6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":30,\"right\":0,\"bottom\":0,\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bf1bd13\",\"elType\":\"widget\",\"settings\":{\"ending_number\":106,\"thousand_separator\":\"\",\"title\":\"Materials\",\"number_color\":\"#8F1417\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Montserrat\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_number_font_weight\":\"bold\",\"typography_number_line_height\":{\"unit\":\"px\",\"size\":66,\"sizes\":[]},\"typography_number_letter_spacing\":{\"unit\":\"px\",\"size\":-1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Poppins\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":500,\"typography_title_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"custom_css\":\"selector .elementor-counter-number {\\n    margin-bottom: 9px;\\n}\",\"aux_animation_name\":\"aux-fade-in\",\"aux_animation_delay\":450,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75dc27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"60\",\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"08e2ed3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"2184324\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-3@2x.png\",\"id\":\"37\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"e5783eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"10f6b0d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-1@2x.png\",\"id\":\"38\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"c665a39\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b077a82\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-4@2x.png\",\"id\":\"35\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-left\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"9faa114\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"202a807\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-5@2x.png\",\"id\":\"36\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right\",\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0a1675e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"f74a8f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-9@2x.png\",\"id\":\"34\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"0f75f1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"16\",\"_inline_size_tablet\":\"33.33\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"d346913\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/client-7@2x.png\",\"id\":\"33\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3765,389,'_elementor_controls_usage','a:11:{s:16:\"aux_simple_shape\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:19:\"shape_style_section\";a:8:{s:10:\"shape_type\";i:2;s:6:\"_width\";i:2;s:7:\"_height\";i:2;s:27:\"shape_background_background\";i:2;s:13:\"_width_tablet\";i:1;s:13:\"_width_mobile\";i:1;s:14:\"_height_tablet\";i:1;s:14:\"_height_mobile\";i:1;}}s:8:\"advanced\";a:5:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:2;s:17:\"aux_position_left\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:14;s:16:\"alignment_tablet\";i:3;s:7:\"divider\";i:10;s:9:\"title_tag\";i:5;s:9:\"alignment\";i:4;}s:23:\"title_secondary_section\";a:4:{s:22:\"title_secondary_before\";i:5;s:25:\"title_secondary_highlight\";i:10;s:19:\"title_tag_secondary\";i:1;s:21:\"title_secondary_after\";i:5;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:8;}}s:5:\"style\";a:5:{s:19:\"title_style_section\";a:11:{s:27:\"title_typography_typography\";i:10;s:28:\"title_typography_font_family\";i:10;s:26:\"title_typography_font_size\";i:10;s:33:\"title_typography_font_size_tablet\";i:11;s:33:\"title_typography_font_size_mobile\";i:3;s:28:\"title_typography_font_weight\";i:10;s:31:\"title_typography_text_transform\";i:7;s:12:\"title_margin\";i:10;s:31:\"title_typography_letter_spacing\";i:4;s:11:\"title_color\";i:6;s:29:\"title_text_shadow_text_shadow\";i:3;}s:20:\"title2_style_heading\";a:15:{s:28:\"title2_typography_typography\";i:7;s:29:\"title2_typography_font_family\";i:6;s:27:\"title2_typography_font_size\";i:7;s:29:\"title2_typography_font_weight\";i:6;s:32:\"title2_typography_text_transform\";i:1;s:29:\"title2_typography_line_height\";i:6;s:34:\"title2_typography_font_size_tablet\";i:6;s:34:\"title2_typography_font_size_mobile\";i:7;s:19:\"title2_width_tablet\";i:1;s:12:\"title2_color\";i:6;s:12:\"title2_width\";i:3;s:19:\"title2_width_mobile\";i:5;s:13:\"title2_margin\";i:1;s:20:\"title2_margin_mobile\";i:1;s:36:\"title2_typography_line_height_tablet\";i:1;}s:32:\"title2_highlighted_style_heading\";a:8:{s:40:\"title2_highlighted_typography_typography\";i:10;s:41:\"title2_highlighted_typography_font_family\";i:6;s:39:\"title2_highlighted_typography_font_size\";i:10;s:41:\"title2_highlighted_typography_font_weight\";i:10;s:44:\"title2_highlighted_typography_text_transform\";i:5;s:24:\"title2_highlighted_color\";i:10;s:46:\"title2_highlighted_typography_font_size_tablet\";i:10;s:46:\"title2_highlighted_typography_font_size_mobile\";i:7;}s:25:\"description_style_section\";a:8:{s:17:\"description_color\";i:5;s:33:\"description_typography_typography\";i:8;s:34:\"description_typography_font_family\";i:6;s:32:\"description_typography_font_size\";i:10;s:39:\"description_typography_font_size_tablet\";i:10;s:39:\"description_typography_font_size_mobile\";i:1;s:34:\"description_typography_font_weight\";i:10;s:17:\"description_width\";i:5;}s:21:\"divider_style_section\";a:4:{s:14:\"divider_weight\";i:4;s:13:\"divider_width\";i:4;s:14:\"divider_margin\";i:4;s:13:\"divider_color\";i:4;}}s:8:\"advanced\";a:7:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:3;s:15:\"_padding_mobile\";i:3;}s:24:\"aux_core_common_position\";a:10:{s:17:\"aux_position_type\";i:3;s:16:\"aux_position_top\";i:3;s:23:\"aux_position_top_tablet\";i:3;s:23:\"aux_position_top_mobile\";i:3;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:2;s:24:\"aux_position_left_mobile\";i:2;s:18:\"aux_position_right\";i:2;s:25:\"aux_position_right_tablet\";i:2;s:25:\"aux_position_right_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:13;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:13;s:22:\"aux_animation_duration\";i:12;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:13;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:3;s:22:\"_box_shadow_box_shadow\";i:3;}}}}s:9:\"aux_image\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"image_section\";a:2:{s:5:\"image\";i:12;s:10:\"image_size\";i:12;}}s:8:\"advanced\";a:7:{s:24:\"aux_core_common_position\";a:4:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:3;}s:30:\"aux_pro_parallax_anims_section\";a:6:{s:25:\"aux_parallax_anims_enable\";i:2;s:21:\"aux_parallax_in_anims\";i:2;s:22:\"aux_parallax_out_anims\";i:2;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:2;s:31:\"aux_parallax_vertical_transform\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:12;s:22:\"aux_animation_duration\";i:6;s:19:\"aux_animation_delay\";i:8;s:20:\"aux_animation_easing\";i:12;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:3;}s:22:\"aux_core_general_extra\";a:2:{s:20:\"aux_max_width_tablet\";i:1;s:20:\"aux_max_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"image_style_section\";a:1:{s:22:\"image_max_width_tablet\";i:2;}}}}s:17:\"aux_modern_button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"button_section\";a:2:{s:5:\"label\";i:5;s:9:\"btn_align\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_style_btn\";a:6:{s:24:\"btn_bg_normal_background\";i:5;s:18:\"btn_padding_normal\";i:5;s:25:\"btn_padding_normal_tablet\";i:5;s:23:\"btn_bg_hover_background\";i:5;s:19:\"btn_bg_normal_color\";i:5;s:18:\"btn_bg_hover_color\";i:5;}s:18:\"section_style_text\";a:8:{s:27:\"text_normal_typo_typography\";i:5;s:26:\"text_normal_typo_font_size\";i:5;s:28:\"text_normal_typo_font_family\";i:5;s:17:\"text_normal_color\";i:5;s:28:\"text_normal_typo_font_weight\";i:5;s:31:\"text_normal_typo_text_transform\";i:5;s:33:\"text_normal_typo_font_size_tablet\";i:4;s:31:\"text_normal_typo_letter_spacing\";i:1;}}s:8:\"advanced\";a:5:{s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:3;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:19:\"aux_position_bottom\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:19:\"_inline_size_tablet\";i:13;s:12:\"_inline_size\";i:6;s:5:\"align\";i:3;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_mobile\";i:3;s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:10;s:13:\"margin_tablet\";i:15;s:13:\"margin_mobile\";i:11;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:8;}}}}s:13:\"aux_icon_list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:2;}}s:6:\"layout\";a:1:{s:19:\"list_layout_section\";a:2:{s:9:\"direction\";i:1;s:5:\"align\";i:2;}}s:5:\"style\";a:3:{s:18:\"list_style_section\";a:2:{s:16:\"list_items_space\";i:1;s:9:\"connector\";i:2;}s:18:\"text_style_section\";a:17:{s:11:\"text1_color\";i:2;s:27:\"text1_typography_typography\";i:2;s:28:\"text1_typography_font_family\";i:2;s:26:\"text1_typography_font_size\";i:2;s:33:\"text1_typography_font_size_tablet\";i:2;s:33:\"text1_typography_font_size_mobile\";i:2;s:28:\"text1_typography_font_weight\";i:1;s:31:\"text1_typography_text_transform\";i:2;s:12:\"text1_margin\";i:1;s:11:\"text2_color\";i:1;s:27:\"text2_typography_typography\";i:1;s:28:\"text2_typography_font_family\";i:1;s:26:\"text2_typography_font_size\";i:1;s:33:\"text2_typography_font_size_tablet\";i:1;s:33:\"text2_typography_font_size_mobile\";i:1;s:28:\"text2_typography_font_weight\";i:1;s:31:\"text2_typography_text_transform\";i:1;}s:18:\"icon_style_section\";a:3:{s:9:\"icon_size\";i:1;s:11:\"icon_margin\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:7:{s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:23:\"_element_vertical_align\";i:1;}s:24:\"aux_core_common_position\";a:9:{s:17:\"aux_position_type\";i:2;s:16:\"aux_position_top\";i:1;s:18:\"aux_position_right\";i:1;s:25:\"aux_position_right_tablet\";i:1;s:25:\"aux_position_right_mobile\";i:1;s:19:\"aux_position_bottom\";i:1;s:26:\"aux_position_bottom_mobile\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:2;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:14;s:16:\"content_position\";i:7;s:6:\"layout\";i:4;s:13:\"custom_height\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:11;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:2;s:13:\"margin_mobile\";i:3;}s:19:\"_section_responsive\";a:2:{s:20:\"reverse_order_tablet\";i:1;s:20:\"reverse_order_mobile\";i:1;}s:24:\"aux_core_common_position\";a:3:{s:17:\"aux_position_type\";i:1;s:17:\"aux_position_left\";i:1;s:24:\"aux_position_left_tablet\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:12:\"border_width\";i:2;s:19:\"border_width_mobile\";i:1;s:13:\"border_border\";i:1;}s:18:\"section_background\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}s:23:\"aux_carousel_navigation\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:10:\"navigation\";a:4:{s:8:\"nav_type\";i:2;s:9:\"prev_icon\";i:2;s:9:\"next_icon\";i:2;s:10:\"nav_target\";i:2;}}s:5:\"style\";a:2:{s:16:\"navigation_style\";a:3:{s:16:\"navigation_align\";i:2;s:23:\"navigation_align_mobile\";i:2;s:14:\"navigation_gap\";i:2;}s:10:\"icon_style\";a:6:{s:18:\"icon_bg_background\";i:2;s:9:\"icon_size\";i:2;s:16:\"icon_size_mobile\";i:2;s:12:\"icon_padding\";i:2;s:19:\"icon_padding_mobile\";i:2;s:24:\"icon_hover_bg_background\";i:2;}}s:8:\"advanced\";a:1:{s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:35:\"aux_recent_portfolios_grid_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:2:{s:14:\"layout_section\";a:3:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:11:\"preloadable\";i:1;}s:16:\"carousel_section\";a:2:{s:27:\"carousel_navigation_control\";i:1;s:13:\"carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:6:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:7:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}s:33:\"aux_core_common_inview_transition\";a:3:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:20:\"aux_animation_easing\";i:1;}}s:7:\"content\";a:1:{s:13:\"query_section\";a:1:{s:3:\"num\";i:1;}}}}s:21:\"aux_flexible_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:15:\"general_section\";a:4:{s:6:\"slides\";i:1;s:14:\"carousel_space\";i:1;s:27:\"carousel_navigation_control\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}s:8:\"aux_text\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:14:\"header_section\";a:3:{s:13:\"icon_or_image\";i:5;s:5:\"image\";i:1;s:10:\"svg_inline\";i:4;}s:15:\"content_section\";a:2:{s:5:\"title\";i:5;s:7:\"content\";i:5;}s:14:\"button_section\";a:3:{s:14:\"display_button\";i:1;s:9:\"btn_label\";i:4;s:17:\"aux_text_btn_icon\";i:4;}}s:5:\"style\";a:6:{s:20:\"header_style_section\";a:1:{s:14:\"header_padding\";i:5;}s:24:\"icon_image_style_section\";a:2:{s:12:\"icon_padding\";i:5;s:10:\"icon_color\";i:4;}s:19:\"title_style_section\";a:8:{s:11:\"title_color\";i:5;s:27:\"title_typography_typography\";i:5;s:26:\"title_typography_font_size\";i:5;s:33:\"title_typography_font_size_tablet\";i:5;s:28:\"title_typography_font_weight\";i:5;s:31:\"title_typography_letter_spacing\";i:1;s:19:\"title_margin_bottom\";i:5;s:28:\"title_typography_font_family\";i:4;}s:21:\"content_style_section\";a:9:{s:13:\"content_color\";i:5;s:29:\"content_typography_typography\";i:5;s:28:\"content_typography_font_size\";i:5;s:35:\"content_typography_font_size_tablet\";i:5;s:30:\"content_typography_font_weight\";i:5;s:15:\"content_padding\";i:5;s:19:\"content_hover_color\";i:4;s:30:\"content_typography_font_family\";i:4;s:30:\"content_typography_line_height\";i:4;}s:21:\"wrapper_style_section\";a:6:{s:23:\"wrapper_content_padding\";i:5;s:30:\"wrapper_content_padding_tablet\";i:5;s:44:\"wrapper_content_background_normal_background\";i:5;s:39:\"wrapper_content_background_normal_color\";i:5;s:10:\"text_align\";i:4;s:38:\"wrapper_content_background_hover_color\";i:4;}s:20:\"button_style_section\";a:10:{s:28:\"button_background_background\";i:4;s:23:\"button_background_color\";i:4;s:34:\"hover_button_background_background\";i:4;s:29:\"hover_button_background_color\";i:4;s:13:\"btn_icon_size\";i:4;s:17:\"button_icon_color\";i:4;s:23:\"hover_button_icon_color\";i:4;s:10:\"btn_border\";i:4;s:14:\"button_padding\";i:4;s:21:\"button_padding_tablet\";i:4;}}s:8:\"advanced\";a:6:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}s:24:\"aux_core_common_position\";a:5:{s:17:\"aux_position_type\";i:1;s:24:\"aux_position_type_mobile\";i:1;s:18:\"aux_position_right\";i:1;s:19:\"aux_position_bottom\";i:1;s:24:\"aux_position_left_mobile\";i:1;}s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:5;}s:30:\"aux_pro_parallax_anims_section\";a:5:{s:25:\"aux_parallax_anims_enable\";i:1;s:21:\"aux_parallax_in_anims\";i:1;s:22:\"aux_parallax_out_anims\";i:1;s:33:\"aux_parallax_horizontal_transform\";i:1;s:29:\"aux_parallax_animation_easing\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:5;s:22:\"aux_animation_duration\";i:5;s:19:\"aux_animation_delay\";i:3;s:20:\"aux_animation_easing\";i:5;}s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:7:\"_margin\";i:4;}}}}}'),(3766,389,'_elementor_page_assets','a:0:{}'),(3768,390,'_wp_page_template','templates/page-builder-content.php'),(3769,390,'_elementor_edit_mode','builder'),(3770,390,'_elementor_template_type','wp-page'),(3771,390,'_elementor_version','3.5.6'),(3772,390,'_elementor_data','[{\"id\":\"ca96cdd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b0c5a6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"318d61b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bd2612\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"82bf8b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fdbc34f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"d23831d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"de73bac\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"show_filters\":\"\",\"perpage\":\"9\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#7A7A7A\",\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Mukta\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .wpulike{\\n    display: none;\\n}\\nselector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: relative;\\n    top: -100px;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: #fff;\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-col:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-col:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\nselector .aux-pagination{\\n    display: flex;\\n    justify-content: center;\\n}\\nselector .aux-pagination .prev , selector .aux-pagination .next{\\n    display: none;\\n}\\nselector .aux-pagination a{\\n    color: var( --e-global-color-primary );\\n    font-size: 18px;\\n    font-weight: bold;\\n    border-radius: 0;\\n}\\nselector .aux-pagination .active a{\\n    color: #fff;\\n    background-color: var( --e-global-color-primary );\\n    border-color: var( --e-global-color-primary );\\n    border-radius: 0;\\n    font-size: 18px;\\n    font-weight: bold;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size:23px !important;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 40px 40px;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 30px 30px;\\n    }\\n    selector .entry-title a{\\n        font-size:17px !important;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"info_color\":\"globals\\/colors?id=text\",\"info_typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"columns_tablet\":\"2\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3773,390,'_elementor_controls_usage','a:4:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:9:\"title_tag\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;s:21:\"title_secondary_after\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:1;s:12:\"title_margin\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:20:\"title2_style_heading\";a:10:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:12:\"title2_width\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:6:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:25:\"description_style_section\";a:8:{s:34:\"description_typography_font_family\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:39:\"description_typography_font_size_tablet\";i:2;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:17:\"description_width\";i:1;s:39:\"description_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:26:\"aux_recent_portfolios_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"settings\";a:2:{s:15:\"filters_section\";a:1:{s:12:\"show_filters\";i:1;}s:16:\"paginate_section\";a:1:{s:7:\"perpage\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:8:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:27:\"info_typography_font_family\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(3774,390,'_elementor_page_assets','a:0:{}'),(3776,391,'_wp_page_template','templates/page-builder-content.php'),(3777,391,'_elementor_edit_mode','builder'),(3778,391,'_elementor_template_type','wp-page'),(3779,391,'_elementor_version','3.5.6'),(3780,391,'_elementor_data','[{\"id\":\"ca96cdd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b0c5a6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"318d61b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bd2612\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"82bf8b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fdbc34f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"d23831d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"de73bac\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"show_filters\":\"\",\"perpage\":\"9\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#7A7A7A\",\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Mukta\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .wpulike{\\n    display: none;\\n}\\nselector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: relative;\\n    top: -100px;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: #fff;\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-col:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-col:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\nselector .aux-pagination{\\n    display: flex;\\n    justify-content: center;\\n}\\nselector .aux-pagination .prev , selector .aux-pagination .next{\\n    display: none;\\n}\\nselector .aux-pagination a{\\n    color: var( --e-global-color-primary );\\n    font-size: 18px;\\n    font-weight: bold;\\n    border-radius: 0;\\n}\\nselector .aux-pagination .active a{\\n    color: #fff;\\n    background-color: var( --e-global-color-primary );\\n    border-color: var( --e-global-color-primary );\\n    border-radius: 0;\\n    font-size: 18px;\\n    font-weight: bold;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size:23px !important;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 40px 40px;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 30px 30px;\\n    }\\n    selector .entry-title a{\\n        font-size:17px !important;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"info_color\":\"globals\\/colors?id=text\",\"info_typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"columns_tablet\":\"2\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3781,391,'_elementor_controls_usage','a:4:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:9:\"title_tag\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;s:21:\"title_secondary_after\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:1;s:12:\"title_margin\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:20:\"title2_style_heading\";a:10:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:12:\"title2_width\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:6:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:25:\"description_style_section\";a:8:{s:34:\"description_typography_font_family\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:39:\"description_typography_font_size_tablet\";i:2;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:17:\"description_width\";i:1;s:39:\"description_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:26:\"aux_recent_portfolios_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"settings\";a:2:{s:15:\"filters_section\";a:1:{s:12:\"show_filters\";i:1;}s:16:\"paginate_section\";a:1:{s:7:\"perpage\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:8:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:27:\"info_typography_font_family\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(3782,391,'_elementor_page_assets','a:0:{}'),(3784,392,'_wp_page_template','templates/page-builder-content.php'),(3785,392,'_elementor_edit_mode','builder'),(3786,392,'_elementor_template_type','wp-page'),(3787,392,'_elementor_version','3.5.6'),(3788,392,'_elementor_data','[{\"id\":\"ca96cdd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b0c5a6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"318d61b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bd2612\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"82bf8b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fdbc34f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"d23831d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"de73bac\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"show_filters\":\"\",\"perpage\":\"9\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#7A7A7A\",\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Mukta\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .wpulike{\\n    display: none;\\n}\\nselector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: relative;\\n    top: -100px;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: #fff;\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-col:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-col:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\nselector .aux-pagination{\\n    display: flex;\\n    justify-content: center;\\n}\\nselector .aux-pagination .prev , selector .aux-pagination .next{\\n    display: none;\\n}\\nselector .aux-pagination a{\\n    color: var( --e-global-color-primary );\\n    font-size: 18px;\\n    font-weight: bold;\\n    border-radius: 0;\\n}\\nselector .aux-pagination .active a{\\n    color: #fff;\\n    background-color: var( --e-global-color-primary );\\n    border-color: var( --e-global-color-primary );\\n    border-radius: 0;\\n    font-size: 18px;\\n    font-weight: bold;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size:23px !important;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 40px 40px;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 30px 30px;\\n    }\\n    selector .entry-title a{\\n        font-size:17px !important;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"info_color\":\"globals\\/colors?id=text\",\"info_typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"columns_tablet\":\"2\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3789,392,'_elementor_controls_usage','a:4:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:9:\"title_tag\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;s:21:\"title_secondary_after\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:1;s:12:\"title_margin\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:20:\"title2_style_heading\";a:10:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:12:\"title2_width\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:6:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:25:\"description_style_section\";a:8:{s:34:\"description_typography_font_family\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:39:\"description_typography_font_size_tablet\";i:2;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:17:\"description_width\";i:1;s:39:\"description_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:26:\"aux_recent_portfolios_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"settings\";a:2:{s:15:\"filters_section\";a:1:{s:12:\"show_filters\";i:1;}s:16:\"paginate_section\";a:1:{s:7:\"perpage\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:8:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:27:\"info_typography_font_family\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(3790,392,'_elementor_page_assets','a:0:{}'),(3795,393,'_wp_page_template','templates/page-builder-content.php'),(3796,393,'_elementor_edit_mode','builder'),(3797,393,'_elementor_template_type','wp-page'),(3798,393,'_elementor_version','3.5.6'),(3799,393,'_elementor_data','[{\"id\":\"ca96cdd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b0c5a6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"318d61b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bd2612\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"82bf8b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fdbc34f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"d23831d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"de73bac\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"show_filters\":\"\",\"perpage\":\"9\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#7A7A7A\",\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Mukta\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .wpulike{\\n    display: none;\\n}\\nselector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: relative;\\n    top: -100px;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: #fff;\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-col:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-col:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\nselector .aux-pagination{\\n    display: flex;\\n    justify-content: center;\\n}\\nselector .aux-pagination .prev , selector .aux-pagination .next{\\n    display: none;\\n}\\nselector .aux-pagination a{\\n    color: var( --e-global-color-primary );\\n    font-size: 18px;\\n    font-weight: bold;\\n    border-radius: 0;\\n}\\nselector .aux-pagination .active a{\\n    color: #fff;\\n    background-color: var( --e-global-color-primary );\\n    border-color: var( --e-global-color-primary );\\n    border-radius: 0;\\n    font-size: 18px;\\n    font-weight: bold;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size:23px !important;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 40px 40px;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 30px 30px;\\n    }\\n    selector .entry-title a{\\n        font-size:17px !important;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"info_color\":\"globals\\/colors?id=text\",\"info_typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"columns_tablet\":\"2\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3800,393,'_elementor_controls_usage','a:4:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:9:\"title_tag\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;s:21:\"title_secondary_after\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:1;s:12:\"title_margin\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:20:\"title2_style_heading\";a:10:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:12:\"title2_width\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:6:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:25:\"description_style_section\";a:8:{s:34:\"description_typography_font_family\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:39:\"description_typography_font_size_tablet\";i:2;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:17:\"description_width\";i:1;s:39:\"description_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:26:\"aux_recent_portfolios_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"settings\";a:2:{s:15:\"filters_section\";a:1:{s:12:\"show_filters\";i:1;}s:16:\"paginate_section\";a:1:{s:7:\"perpage\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:8:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:27:\"info_typography_font_family\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(3801,393,'_elementor_page_assets','a:0:{}'),(3803,394,'_wp_page_template','templates/page-builder-content.php'),(3804,394,'_elementor_edit_mode','builder'),(3805,394,'_elementor_template_type','wp-page'),(3806,394,'_elementor_version','3.5.6'),(3807,394,'_elementor_data','[{\"id\":\"ca96cdd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"b0c5a6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"318d61b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4bd2612\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"82bf8b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Products\",\"title_tag\":\"h5\",\"title_secondary_before\":\"Best and \",\"title_secondary_highlight\":\"stand out \",\"title_secondary_after\":\"amongst peers\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_width\":{\"unit\":\"px\",\"size\":\"370\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-secondary{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"divider\":\"\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"fdbc34f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\"},\"elements\":[{\"id\":\"d23831d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio<\\/p>\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"650\",\"sizes\":[]},\"__globals__\":{\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"de73bac\",\"elType\":\"widget\",\"settings\":{\"columns\":\"3\",\"show_filters\":\"\",\"perpage\":\"9\",\"image_aspect_ratio\":\"custom\",\"image_aspect_ratio_custom\":\"1.1975\",\"title_color\":\"#191919\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"26\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"info_color\":\"#7A7A7A\",\"info_typography_typography\":\"custom\",\"info_typography_font_family\":\"Mukta\",\"info_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"info_typography_font_weight\":\"300\",\"info_typography_text_transform\":\"capitalize\",\"info_typography_font_style\":\"normal\",\"custom_css\":\"selector .wpulike{\\n    display: none;\\n}\\nselector .entry-main{\\n    background-color: var( --e-global-color-accent );\\n    padding: 32px 26px 40px 48px;\\n    width: 80%;\\n    margin: 0 auto;\\n    position: relative;\\n    top: -100px;\\n    display: flex;\\n    flex-direction: column-reverse;\\n    box-shadow: 0px 9px 35px #0000000F;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-main:after{\\n    content: \'\\\\e171\';\\n    font-family: \\\"auxin-front\\\";\\n    font-size: 30px;\\n    background-color: var( --e-global-color-secondary );\\n    color: #fff;\\n    padding: 9px 15px;\\n    position: absolute;\\n    right: 30px;\\n    bottom: -20px;\\n    transition:all 250ms ease-in;\\n}\\nselector .entry-title:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    position: absolute;\\n    bottom: 12px;\\n    left: -15px;\\n}\\nselector .entry-info{\\n    margin-bottom: 10px;\\n}\\nselector .aux-col:hover .entry-main{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-col:hover .entry-main:after{\\n    color: var( --e-global-color-primary );\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title:before{\\n    background-color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-title a{\\n    color: var( --e-global-color-accent );\\n}\\nselector .aux-col:hover .entry-tax a {\\n    color:rgba(255, 255, 255, 0.6);\\n}\\nselector .aux-pagination{\\n    display: flex;\\n    justify-content: center;\\n}\\nselector .aux-pagination .prev , selector .aux-pagination .next{\\n    display: none;\\n}\\nselector .aux-pagination a{\\n    color: var( --e-global-color-primary );\\n    font-size: 18px;\\n    font-weight: bold;\\n    border-radius: 0;\\n}\\nselector .aux-pagination .active a{\\n    color: #fff;\\n    background-color: var( --e-global-color-primary );\\n    border-color: var( --e-global-color-primary );\\n    border-radius: 0;\\n    font-size: 18px;\\n    font-weight: bold;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .entry-title a{\\n        font-size:23px !important;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 40px 40px;\\n    }\\n}\\n@media screen and (max-width:900px){\\n    selector .entry-main:after{\\n        padding:7px 13px;\\n        font-size:22px;\\n    }\\n    selector .entry-main{\\n        padding: 32px 15px 30px 30px;\\n    }\\n    selector .entry-title a{\\n        font-size:17px !important;\\n    }\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"info_color\":\"globals\\/colors?id=text\",\"info_typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"columns_tablet\":\"2\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"info_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\",\"show_info\":\"\"},\"elements\":[],\"widgetType\":\"aux_recent_portfolios_grid\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3808,394,'_elementor_controls_usage','a:4:{s:18:\"aux_modern_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:13:\"title_section\";a:3:{s:5:\"title\";i:2;s:9:\"title_tag\";i:1;s:7:\"divider\";i:2;}s:23:\"title_secondary_section\";a:3:{s:22:\"title_secondary_before\";i:1;s:25:\"title_secondary_highlight\";i:1;s:21:\"title_secondary_after\";i:1;}s:27:\"description_primary_section\";a:1:{s:11:\"description\";i:1;}}s:5:\"style\";a:4:{s:19:\"title_style_section\";a:9:{s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:31:\"title_typography_letter_spacing\";i:1;s:11:\"title_color\";i:1;s:12:\"title_margin\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:20:\"title2_style_heading\";a:10:{s:28:\"title2_typography_typography\";i:1;s:29:\"title2_typography_font_family\";i:1;s:27:\"title2_typography_font_size\";i:1;s:29:\"title2_typography_font_weight\";i:1;s:29:\"title2_typography_line_height\";i:1;s:12:\"title2_color\";i:1;s:12:\"title2_width\";i:1;s:34:\"title2_typography_font_size_tablet\";i:1;s:34:\"title2_typography_font_size_mobile\";i:1;s:19:\"title2_width_mobile\";i:1;}s:32:\"title2_highlighted_style_heading\";a:6:{s:40:\"title2_highlighted_typography_typography\";i:1;s:41:\"title2_highlighted_typography_font_family\";i:1;s:39:\"title2_highlighted_typography_font_size\";i:1;s:41:\"title2_highlighted_typography_font_weight\";i:1;s:46:\"title2_highlighted_typography_font_size_tablet\";i:1;s:46:\"title2_highlighted_typography_font_size_mobile\";i:1;}s:25:\"description_style_section\";a:8:{s:34:\"description_typography_font_family\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:39:\"description_typography_font_size_tablet\";i:2;s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:17:\"description_width\";i:1;s:39:\"description_typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:2;s:22:\"aux_animation_duration\";i:2;s:19:\"aux_animation_delay\";i:2;s:20:\"aux_animation_easing\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}s:26:\"aux_recent_portfolios_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;}}s:8:\"settings\";a:2:{s:15:\"filters_section\";a:1:{s:12:\"show_filters\";i:1;}s:16:\"paginate_section\";a:1:{s:7:\"perpage\";i:1;}}s:5:\"style\";a:3:{s:19:\"image_style_section\";a:2:{s:18:\"image_aspect_ratio\";i:1;s:25:\"image_aspect_ratio_custom\";i:1;}s:19:\"title_style_section\";a:7:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:28:\"title_typography_font_family\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:31:\"title_typography_text_transform\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;}s:18:\"info_style_section\";a:8:{s:10:\"info_color\";i:1;s:26:\"info_typography_typography\";i:1;s:27:\"info_typography_font_family\";i:1;s:25:\"info_typography_font_size\";i:1;s:27:\"info_typography_font_weight\";i:1;s:30:\"info_typography_text_transform\";i:1;s:26:\"info_typography_font_style\";i:1;s:32:\"info_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:34:\"aux_core_common_custom_css_section\";a:1:{s:10:\"custom_css\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:33:\"aux_core_common_inview_transition\";a:4:{s:18:\"aux_animation_name\";i:1;s:22:\"aux_animation_duration\";i:1;s:19:\"aux_animation_delay\";i:1;s:20:\"aux_animation_easing\";i:1;}}}}}'),(3809,394,'_elementor_page_assets','a:0:{}'),(3820,396,'_elementor_data',''),(3821,396,'_wp_page_template','default'),(3822,396,'_elementor_edit_mode','builder'),(3823,396,'_elementor_template_type','wp-post'),(3824,396,'_elementor_version','3.5.6'),(3825,396,'_thumbnail_id','11'),(3826,397,'_elementor_data',''),(3827,397,'_wp_page_template','default'),(3828,397,'_elementor_edit_mode','builder'),(3829,397,'_elementor_template_type','wp-post'),(3830,397,'_elementor_version','3.5.6'),(3831,397,'_thumbnail_id','11'),(3832,398,'_elementor_data','[{\"id\":\"58351253\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"661bb9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"42e4ddfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4228095b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"49806b52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60310c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"6751dae3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"492a6462\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3a715857\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"5dad30c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design Project\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"58bd4149\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"19b1bcb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"3bd35869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office design\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1ce4de54\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1fffb676\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"64b59291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"419319d0\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2057898b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5dd455c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"3b02191a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"56400bd9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"79482fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4ab8ae84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"485a6883\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"255a8ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1d779a66\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"79dde293\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"7b47db66\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"6ca49d3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"776a16f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f667b6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"568fbac6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"6a7b21e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"1cad8e6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6fbf61b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in architect\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"a2b92e3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3bec9fbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"cca098f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"a036394\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"2edcf206\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"480cea7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"f1b2724\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"68c6e640\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3833,398,'_wp_page_template','default'),(3834,398,'_elementor_edit_mode','builder'),(3835,398,'_elementor_template_type','wp-post'),(3836,398,'_elementor_version','3.5.6'),(3837,398,'_thumbnail_id','11'),(3838,61,'_elementor_page_assets','a:0:{}'),(3840,399,'_elementor_data','[{\"id\":\"58351253\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"661bb9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"42e4ddfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4228095b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"49806b52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60310c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"6751dae3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"492a6462\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3a715857\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"5dad30c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design Project\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"58bd4149\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"19b1bcb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"3bd35869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office design\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1ce4de54\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1fffb676\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"64b59291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"419319d0\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2057898b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5dd455c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"3b02191a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"56400bd9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"79482fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4ab8ae84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"485a6883\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"255a8ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1d779a66\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"79dde293\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"7b47db66\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"6ca49d3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"776a16f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f667b6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"568fbac6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"6a7b21e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"1cad8e6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6fbf61b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in architect\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"a2b92e3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3bec9fbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"cca098f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"a036394\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"2edcf206\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"480cea7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"f1b2724\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"68c6e640\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3841,399,'_wp_page_template','default'),(3842,399,'_elementor_edit_mode','builder'),(3843,399,'_elementor_template_type','wp-post'),(3844,399,'_elementor_version','3.5.6'),(3845,399,'_thumbnail_id','11'),(3846,399,'_elementor_page_assets','a:0:{}'),(3848,400,'_wp_attached_file','2022/03/structure__77634.webp'),(3849,400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:584;s:4:\"file\";s:29:\"2022/03/structure__77634.webp\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"structure__77634-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"structure__77634-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"structure__77634-768x584.webp\";s:5:\"width\";i:768;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/webp\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"structure__77634-280x180.webp\";s:5:\"width\";i:280;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/webp\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3850,401,'_wp_attached_file','2022/03/motor__53392.1603756808.jpg'),(3851,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:756;s:4:\"file\";s:35:\"2022/03/motor__53392.1603756808.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"motor__53392.1603756808-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"motor__53392.1603756808-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"motor__53392.1603756808-768x756.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:756;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"motor__53392.1603756808-280x180.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3852,402,'_wp_attached_file','2022/03/tracks__42131.1478057120.jpg'),(3853,402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:781;s:4:\"file\";s:36:\"2022/03/tracks__42131.1478057120.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"tracks__42131.1478057120-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"tracks__42131.1478057120-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"tracks__42131.1478057120-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"tracks__42131.1478057120-280x180.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3854,403,'_elementor_data','[{\"id\":\"58351253\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"661bb9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"42e4ddfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4228095b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"49806b52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60310c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"6751dae3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"492a6462\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3a715857\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"5dad30c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design Project\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"58bd4149\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"19b1bcb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"3bd35869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office design\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1ce4de54\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1fffb676\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"64b59291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"419319d0\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2057898b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5dd455c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"3b02191a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"56400bd9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"79482fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4ab8ae84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"485a6883\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"255a8ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1d779a66\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"79dde293\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"7b47db66\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"6ca49d3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"776a16f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f667b6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"568fbac6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"6a7b21e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"1cad8e6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6fbf61b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in architect\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"a2b92e3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3bec9fbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"cca098f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"a036394\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"2edcf206\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"480cea7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"f1b2724\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"68c6e640\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3855,403,'_wp_page_template','default'),(3856,403,'_elementor_edit_mode','builder'),(3857,403,'_elementor_template_type','wp-post'),(3858,403,'_elementor_version','3.5.6'),(3859,403,'_thumbnail_id','11'),(3860,403,'_elementor_page_assets','a:0:{}'),(3862,404,'_elementor_data','[{\"id\":\"58351253\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ECECEC\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"35\",\"bottom\":\"170\",\"left\":\"34\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"661bb9fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"42e4ddfd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_tag\":\"h5\",\"title_secondary_before\":\"We are \",\"title_secondary_highlight\":\"innovative\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Mukta\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"18\",\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"1.08\",\"sizes\":[]},\"title_color\":\"#A2A2A2\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_typography_typography\":\"custom\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_color\":\"#191919\",\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#FF7E44\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"custom_css\":\"selector .aux-modern-heading-primary:before{\\n    content: \'\';\\n    width: 8px;\\n    height: 8px;\\n    background-color: var( --e-global-color-secondary );\\n    display: inline-block;\\n    margin-right: 10px; \\n    position: relative;\\n    top: -3px;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\\nselector .aux-modern-heading-divider{\\n    position: relative;\\n    left: -50px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=secondary\",\"title2_color\":\"globals\\/colors?id=primary\",\"title2_typography_typography\":\"\",\"description_color\":\"\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"alignment\":\"center\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4228095b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"49806b52\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"60310c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Furniture &amp; Accessories\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"wrapper_content_background_hover_color\":\"#FF7E44\",\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"6751dae3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Construction\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"57.656\\\" height=\\\"57.539\\\" viewBox=\\\"0 0 57.656 57.539\\\">\\n  <path d=\\\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\\\" transform=\\\"translate(-2.344 57.539)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-left-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"492a6462\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"3a715857\",\"elType\":\"widget\",\"settings\":{\"title\":\"Architecture\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60.117\\\" height=\\\"56.719\\\" viewBox=\\\"0 0 60.117 56.719\\\">\\n  <path d=\\\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\\\" transform=\\\"translate(0.059 56.719)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"5dad30c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design Project\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"60\\\" height=\\\"60\\\" viewBox=\\\"0 0 60 60\\\">\\n  <path d=\\\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\\\" transform=\\\"translate(0 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-scale-down-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":300,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"},{\"id\":\"58bd4149\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"align_tablet\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"19b1bcb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"3D Animation\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"},{\"id\":\"3bd35869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office design\",\"content\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...<\\/p>\",\"btn_label\":\" \",\"aux_text_btn_icon\":{\"value\":\"auxicon auxicon-arrow-right-1\",\"library\":\"auxin-front-icon\"},\"header_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"icon_color\":\"\",\"title_color\":\"#2A2A2A\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin_bottom\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"content_color\":\"#7A7A7A\",\"content_hover_color\":\"#FFFFFF99\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Mukta\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.8\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"button_background_background\":\"classic\",\"button_background_color\":\"#FF7E44\",\"hover_button_background_background\":\"classic\",\"hover_button_background_color\":\"#FFFFFF\",\"btn_icon_size\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"button_icon_color\":\"#FFFFFF\",\"hover_button_icon_color\":\"#191919\",\"btn_border\":\"none\",\"button_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"16\",\"bottom\":\"14\",\"left\":\"16\",\"isLinked\":\"\"},\"button_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":\"\"},\"text_align\":\"left\",\"wrapper_content_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"60\",\"isLinked\":\"\"},\"wrapper_content_padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":\"\"},\"wrapper_content_background_normal_background\":\"classic\",\"wrapper_content_background_normal_color\":\"#FFFFFF\",\"wrapper_content_background_hover_background\":\"classic\",\"wrapper_content_background_hover_color\":\"#FF7E44\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"custom_css\":\"selector .aux-widget-advanced-text{\\n    transition: all 250ms ease-in;\\n    box-shadow: 0px 6px 35px #00000012;\\n}\\nselector:hover .aux-widget-advanced-text{\\n    background-color: var( --e-global-color-secondary );\\n}\\nselector .aux-ico-box{\\n    margin: 0;\\n}\\nselector .aux-black.aux-button.aux-outline{\\n    background-color:var( --e-global-color-secondary ) !important;\\n    box-shadow: none;\\n}\\nselector .aux-overlay::after {\\n    background-color: var( --e-global-color-accent );\\n    border-radius: 0;\\n}\\nselector:hover .aux-black.aux-button.aux-outline{\\n    background-color: var( --e-global-color-accent ) !important;\\n}\\nselector:hover .aux-icon {\\n    color: var( --e-global-color-primary );\\n}\\nselector .aux-button{\\n    position: absolute;\\n    bottom: -100px;\\n}\\nselector .aux-ico-box{\\n    position: relative;\\n}\\nselector .aux-ico{\\n    position: relative;\\n    z-index: 999;\\n}\\nselector .aux-ico-box:before{\\n    content: \'\';\\n    width: 51px;\\n    height: 51px;\\n    background-color: var( --e-global-color-secondary );\\n    border-radius: 100%;\\n    display: inline-block;\\n    position: absolute;\\n    right: -17px;\\n    bottom: -10px;\\n    z-index: 9;\\n}\\nselector:hover .aux-ico-box:before{\\n    background-color: rgba(255, 255, 255, 0.2);\\n}\\nselector svg{\\n    position: relative;\\n    z-index: 99;\\n}\\nselector:hover svg path{\\n    fill:#fff;\\n}\\n@media screen and (max-width:1440px) and (min-width:1025px){\\n    selector .aux-widget-advanced-text {\\n        padding: 60px 20px 80px 40px;\\n    }\\n}\\n@media screen and (max-width:1024px) and (min-width:900px){\\n    selector{\\n        max-width:440px;\\n    }\\n}\",\"__globals__\":{\"icon_color\":\"\",\"wrapper_content_background_normal_color\":\"globals\\/colors?id=accent\",\"title_typography_typography\":\"\",\"content_color\":\"globals\\/colors?id=text\",\"content_typography_typography\":\"\",\"button_background_color\":\"globals\\/colors?id=secondary\",\"button_icon_color\":\"globals\\/colors?id=accent\",\"hover_button_background_color\":\"globals\\/colors?id=accent\",\"hover_button_icon_color\":\"globals\\/colors?id=primary\",\"wrapper_content_background_hover_color\":\"globals\\/colors?id=secondary\",\"title_hover_color\":\"globals\\/colors?id=accent\",\"icon_color_hover\":\"\"},\"__dynamic__\":[],\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_max_width_tablet\":{\"unit\":\"px\",\"size\":\"330\",\"sizes\":[]},\"icon_or_image\":\"inline-svg\",\"svg_inline\":\"<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" width=\\\"47.461\\\" height=\\\"60\\\" viewBox=\\\"0 0 47.461 60\\\">\\n  <path d=\\\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\\\" transform=\\\"translate(-7.5 60)\\\" fill=\\\"var(--e-global-color-primary)\\\" \\/>\\n<\\/svg>\",\"aux_animation_name\":\"aux-fade-in-right-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_text\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1ce4de54\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/thai-an-BE6CIwysCvU-unsplash.png\",\"id\":\"32\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#191919\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"0.92\",\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"35\",\"bottom\":\"120\",\"left\":\"35\",\"isLinked\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"1fffb676\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"64b59291\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lets work together!\",\"alignment\":\"center\",\"divider\":\"\",\"title_secondary_highlight\":\"A wonderful serenity has taken possession of my entire soul\",\"title_tag_secondary\":\"h5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#FF7E44\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Mukta\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"19\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"400\",\"title2_highlighted_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=accent\",\"title2_highlighted_typography_typography\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"64\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"aux_animation_name\":\"aux-scale-up\",\"aux_animation_duration\":2000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"419319d0\",\"elType\":\"widget\",\"settings\":{\"label\":\"Contact us\",\"btn_bg_normal_background\":\"classic\",\"btn_padding_normal\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"38\",\"bottom\":\"17\",\"left\":\"38\",\"isLinked\":\"\"},\"btn_padding_normal_tablet\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"30\",\"bottom\":\"11\",\"left\":\"27\",\"isLinked\":\"\"},\"btn_bg_hover_background\":\"classic\",\"text_normal_typo_typography\":\"custom\",\"text_normal_typo_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"__globals__\":{\"btn_bg_normal_color\":\"globals\\/colors?id=secondary\",\"btn_bg_hover_color\":\"globals\\/colors?id=primary\",\"text_normal_color\":\"globals\\/colors?id=accent\",\"text_normal_typo_typography\":\"\"},\"btn_bg_normal_color\":\"#191919\",\"btn_bg_hover_color\":\"#FF7E44\",\"text_normal_color\":\"#FFFFFF\",\"text_normal_typo_font_family\":\"Heebo\",\"text_normal_typo_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"text_normal_typo_font_weight\":\"700\",\"text_normal_typo_text_transform\":\"uppercase\",\"text_normal_typo_letter_spacing\":{\"unit\":\"px\",\"size\":\"0.48\",\"sizes\":[]},\"btn_align\":\"center\",\"aux_animation_name\":\"aux-fade-in-up\",\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2057898b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"5dd455c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\"},\"elements\":[{\"id\":\"3b02191a\",\"elType\":\"widget\",\"settings\":{\"title\":\"ARchitect\",\"alignment_tablet\":\"center\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"270\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"124\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"uppercase\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"aux_position_type\":\"absolute\",\"custom_css\":\"selector .aux-modern-heading-primary{\\n    -webkit-text-stroke: 2px rgba(255, 126, 68, 0.11);\\n    -webkit-text-fill-color: transparent;\\n}\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"\"},\"_z_index\":\"9\",\"aux_animation_name\":\"aux-fade-in-right-2\",\"aux_animation_duration\":4000,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"56400bd9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"79482fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"4ab8ae84\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"title_tag\":\"h5\",\"title_secondary_highlight\":\"Why Choose and Trust Us\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_font_family\":\"Mukta\",\"title2_typography_font_family\":\"Heebo\",\"title2_typography_font_size\":{\"unit\":\"px\",\"size\":\"56\",\"sizes\":[]},\"title2_typography_font_weight\":\"700\",\"title2_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.3\",\"sizes\":[]},\"title2_highlighted_typography_typography\":\"custom\",\"title2_highlighted_typography_font_family\":\"Heebo\",\"title2_highlighted_typography_font_size\":{\"unit\":\"px\",\"size\":\"83\",\"sizes\":[]},\"title2_highlighted_typography_font_weight\":\"700\",\"title2_highlighted_color\":\"#191919\",\"divider_weight\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"divider_width\":{\"unit\":\"px\",\"size\":\"25\",\"sizes\":[]},\"divider_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":\"\"},\"divider_color\":\"#A2A2A2\",\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_width\":{\"unit\":\"px\",\"size\":\"576\",\"sizes\":[]},\"custom_css\":\"selector .aux-head-highlight{\\n    display: inline-block;\\n}\\nselector .aux-modern-heading-divider:after{\\n    content: \'\';\\n    width: 90px;\\n    height: 2px;\\n    background-color: var( --e-global-color-secondary );\\n    display: block;\\n    position: relative;\\n    left: 35px;\\n}\",\"__globals__\":{\"title_typography_typography\":\"\",\"title2_highlighted_typography_typography\":\"\",\"title2_highlighted_color\":\"globals\\/colors?id=primary\",\"title2_color\":\"\",\"title2_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\",\"divider_color\":\"\"},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"title2_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"34\",\"sizes\":[]},\"title2_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title2_width_mobile\":{\"unit\":\"px\",\"size\":\"300\",\"sizes\":[]},\"title2_highlighted_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"36\",\"sizes\":[]},\"title2_highlighted_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"title2_highlighted_typography_line_height\":{\"unit\":\"em\",\"size\":\"1.2\",\"sizes\":[]},\"title2_highlighted_width\":{\"unit\":\"px\",\"size\":\"640\",\"sizes\":[]},\"title2_highlighted_width_tablet\":{\"unit\":\"px\",\"size\":\"500\",\"sizes\":[]},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"},{\"id\":\"485a6883\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"255a8ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\",\"id\":\"31\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":3000,\"aux_animation_easing\":\"0.77,0,0.175,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1d779a66\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"79dde293\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"52\"},\"elements\":[{\"id\":\"7b47db66\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"6ca49d3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":200,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"776a16f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"f667b6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"10 years exprience\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"568fbac6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"6a7b21e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":400,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"1cad8e6c\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"6fbf61b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"best team in architect\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"a2b92e3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":\"1\"}},\"elements\":[{\"id\":\"3bec9fbc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[{\"id\":\"cca098f\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"divider\":\"\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"43\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"30\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"wrapper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"14\",\"bottom\":\"11\",\"left\":\"14\",\"isLinked\":\"\"},\"_background_background\":\"classic\",\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"_background_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"},{\"id\":\"a036394\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Design Solutions\",\"alignment\":\"left\",\"divider\":\"\",\"description\":\"<p>possession of my entire soul, like these sweet<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"28\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":\"\"},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"},{\"id\":\"2edcf206\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"48\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"}},\"elements\":[{\"id\":\"480cea7f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2020\\/10\\/bckfwd-oB1EJLokN3E-unsplash.png\",\"id\":\"30\"},\"image_size\":\"full\",\"ribbon_text\":\"NEW\",\"aux_animation_name\":\"aux-mask-from-left\",\"aux_animation_duration\":2500,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":\"\"},{\"id\":\"f1b2724\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"_inline_size_tablet\":\"100\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"68c6e640\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy Planning\",\"divider\":\"\",\"description\":\"<p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.<\\/p>\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Heebo\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":\"29\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"24\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"22\",\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"title_typography_text_transform\":\"capitalize\",\"title_color\":\"#191919\",\"title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"description_color\":\"#7A7A7A\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Mukta\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"16\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\",\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"description_color\":\"globals\\/colors?id=text\",\"description_typography_typography\":\"\"},\"aux_animation_name\":\"aux-fade-in-up-1\",\"aux_animation_duration\":2000,\"aux_animation_delay\":600,\"aux_animation_easing\":\"0.165,0.84,0.44,1\"},\"elements\":[],\"widgetType\":\"aux_modern_heading\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(3863,404,'_wp_page_template','default'),(3864,404,'_elementor_edit_mode','builder'),(3865,404,'_elementor_template_type','wp-post'),(3866,404,'_elementor_version','3.5.6'),(3867,404,'_thumbnail_id','11'),(3868,404,'_elementor_page_assets','a:0:{}'),(3870,405,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3871,405,'_wp_page_template','default'),(3872,405,'_elementor_edit_mode','builder'),(3873,405,'_elementor_template_type','wp-post'),(3874,405,'_elementor_version','3.5.6'),(3875,405,'_thumbnail_id','11'),(3876,405,'_elementor_page_assets','a:0:{}'),(3878,406,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3879,406,'_wp_page_template','default'),(3880,406,'_elementor_edit_mode','builder'),(3881,406,'_elementor_template_type','wp-post'),(3882,406,'_elementor_version','3.5.6'),(3883,406,'_thumbnail_id','11'),(3884,406,'_elementor_page_assets','a:0:{}'),(3885,407,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":167,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3886,407,'_wp_page_template','default'),(3887,407,'_elementor_edit_mode','builder'),(3888,407,'_elementor_template_type','wp-post'),(3889,407,'_elementor_version','3.5.6'),(3890,407,'_thumbnail_id','11'),(3891,407,'_elementor_page_assets','a:0:{}'),(3892,408,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3893,408,'_wp_page_template','default'),(3894,408,'_elementor_edit_mode','builder'),(3895,408,'_elementor_template_type','wp-post'),(3896,408,'_elementor_version','3.5.6'),(3897,408,'_thumbnail_id','11'),(3898,408,'_elementor_page_assets','a:0:{}'),(3899,409,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3900,409,'_wp_page_template','default'),(3901,409,'_elementor_edit_mode','builder'),(3902,409,'_elementor_template_type','wp-post'),(3903,409,'_elementor_version','3.5.6'),(3904,409,'_thumbnail_id','11'),(3905,409,'_elementor_page_assets','a:0:{}'),(3906,410,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":231,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3907,410,'_wp_page_template','default'),(3908,410,'_elementor_edit_mode','builder'),(3909,410,'_elementor_template_type','wp-post'),(3910,410,'_elementor_version','3.5.6'),(3911,410,'_thumbnail_id','11'),(3912,410,'_elementor_page_assets','a:0:{}'),(3913,411,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3914,411,'_wp_page_template','default'),(3915,411,'_elementor_edit_mode','builder'),(3916,411,'_elementor_template_type','wp-post'),(3917,411,'_elementor_version','3.5.6'),(3918,411,'_thumbnail_id','11'),(3919,411,'_elementor_page_assets','a:0:{}'),(3920,412,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3921,412,'_wp_page_template','default'),(3922,412,'_elementor_edit_mode','builder'),(3923,412,'_elementor_template_type','wp-post'),(3924,412,'_elementor_version','3.5.6'),(3925,412,'_thumbnail_id','11'),(3926,412,'_elementor_page_assets','a:0:{}'),(3927,413,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"align\":\"flex-start\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3928,413,'_wp_page_template','default'),(3929,413,'_elementor_edit_mode','builder'),(3930,413,'_elementor_template_type','wp-post'),(3931,413,'_elementor_version','3.5.6'),(3932,413,'_thumbnail_id','11'),(3933,413,'_elementor_page_assets','a:0:{}'),(3934,414,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3935,414,'_wp_page_template','default'),(3936,414,'_elementor_edit_mode','builder'),(3937,414,'_elementor_template_type','wp-post'),(3938,414,'_elementor_version','3.5.6'),(3939,414,'_thumbnail_id','11'),(3940,414,'_elementor_page_assets','a:0:{}'),(3969,420,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3970,420,'_wp_page_template','default'),(3971,420,'_elementor_edit_mode','builder'),(3972,420,'_elementor_template_type','wp-post'),(3973,420,'_elementor_version','3.5.6'),(3974,420,'_thumbnail_id','11'),(3975,420,'_elementor_page_assets','a:0:{}'),(3976,421,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3977,421,'_wp_page_template','default'),(3978,421,'_elementor_edit_mode','builder'),(3979,421,'_elementor_template_type','wp-post'),(3980,421,'_elementor_version','3.5.6'),(3981,421,'_thumbnail_id','11'),(3982,421,'_elementor_page_assets','a:0:{}'),(3983,422,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\",\"text1_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e7f87f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d622d6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c82db98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\",\"id\":400,\"alt\":\"\",\"source\":\"library\"},\"display_ribbon\":\"\",\"ribbon_text\":\"NEW\",\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":false},{\"id\":\"bc44bae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"121037b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"3137cf9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"5a3ec6f\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"7a29862\"},{\"_id\":\"413044c\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"3442661\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"}]},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3984,422,'_wp_page_template','default'),(3985,422,'_elementor_edit_mode','builder'),(3986,422,'_elementor_template_type','wp-post'),(3987,422,'_elementor_version','3.5.6'),(3988,422,'_thumbnail_id','11'),(3989,422,'_elementor_page_assets','a:0:{}'),(3990,423,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\",\"text1_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e7f87f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d622d6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c82db98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\",\"id\":400,\"alt\":\"\",\"source\":\"library\"},\"display_ribbon\":\"\",\"ribbon_text\":\"NEW\",\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":false},{\"id\":\"bc44bae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"121037b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"3137cf9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"5a3ec6f\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"7a29862\"},{\"_id\":\"413044c\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"3442661\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"}]},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3991,423,'_wp_page_template','default'),(3992,423,'_elementor_edit_mode','builder'),(3993,423,'_elementor_template_type','wp-post'),(3994,423,'_elementor_version','3.5.6'),(3995,423,'_thumbnail_id','11'),(3996,423,'_elementor_page_assets','a:0:{}'),(3997,424,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\",\"text1_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e7f87f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d622d6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c82db98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\",\"id\":400,\"alt\":\"\",\"source\":\"library\"},\"display_ribbon\":\"\",\"ribbon_text\":\"NEW\",\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":false},{\"id\":\"bc44bae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"121037b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"3137cf9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"5a3ec6f\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"7a29862\"},{\"_id\":\"413044c\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"3442661\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"}]},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(3998,424,'_wp_page_template','default'),(3999,424,'_elementor_edit_mode','builder'),(4000,424,'_elementor_template_type','wp-post'),(4001,424,'_elementor_version','3.5.6'),(4002,424,'_thumbnail_id','11'),(4003,424,'_elementor_page_assets','a:0:{}'),(4004,425,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\",\"text1_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e7f87f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d622d6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c82db98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\",\"id\":400,\"alt\":\"\",\"source\":\"library\"},\"display_ribbon\":\"\",\"ribbon_text\":\"NEW\",\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":false},{\"id\":\"bc44bae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"121037b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"3137cf9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"5a3ec6f\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"7a29862\"},{\"_id\":\"413044c\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"3442661\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"}],\"align\":\"flex-start\",\"connector\":\"\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4005,425,'_wp_page_template','default'),(4006,425,'_elementor_edit_mode','builder'),(4007,425,'_elementor_template_type','wp-post'),(4008,425,'_elementor_version','3.5.6'),(4009,425,'_thumbnail_id','11'),(4010,425,'_elementor_page_assets','a:0:{}'),(4013,426,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\",\"text1_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e7f87f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d622d6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c82db98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\",\"id\":400,\"alt\":\"\",\"source\":\"library\"},\"display_ribbon\":\"\",\"ribbon_text\":\"NEW\",\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":false},{\"id\":\"bc44bae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"121037b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"3137cf9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"5a3ec6f\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"7a29862\"},{\"_id\":\"413044c\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"3442661\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"}],\"align\":\"flex-start\",\"connector\":\"\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4014,426,'_wp_page_template','default'),(4015,426,'_elementor_edit_mode','builder'),(4016,426,'_elementor_template_type','wp-post'),(4017,426,'_elementor_version','3.5.6'),(4018,426,'_thumbnail_id','11'),(4019,426,'_elementor_page_assets','a:0:{}'),(4021,61,'_overview','[aux_row columns=\"2\"]\r\n[aux_col][aux_image target=\"_blank\"  attach_id=\"400\" lightbox=\"yes\" attach_id_hover=\"401\" width=\"100%\" height=\"100%\" link=\"\" icon=\"plus\" extra_classes=\"\"][/aux_col]\r\n[aux_col]POWERFULL<br>\r\nMOTOR<br>\r\nLARGETORQUE<br>\r\nSPEED ADJUSTABLE<br>\r\nLOAD CAPACITY UPTO 300KG<br>\r\n5YEARS WARRANTY<br>\r\nDUAL CHANNEL<br>\r\nHEAVY TRACK[/aux_col]\r\n[/aux_row]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[aux_row columns=\"2\"]\r\n[aux_col]SPECIFICATIONS<br>\r\nTRACK LENGTH UPTO 20 METERS<br>\r\nHEAVY DUTY METALRUNNERSWITH DUAL BEARING<br>\r\nDUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING<br>\r\nSILENT, STABLE AND DURABLE<br>\r\nRUNNER<br>\r\n&amp;TRACK<br>\r\n.[/aux_col]\r\n[aux_col][aux_image target=\"_blank\"  attach_id=\"401\" lightbox=\"yes\" attach_id_hover=\"402\" width=\"100%\" height=\"100%\" link=\"\" icon=\"plus\" extra_classes=\"\"][/aux_col]\r\n[/aux_row]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[aux_row columns=\"2\"]\r\n[aux_col][aux_image target=\"_blank\"  attach_id=\"402\" lightbox=\"yes\" attach_id_hover=\"400\" width=\"100%\" height=\"100%\" link=\"\" icon=\"plus\" extra_classes=\"\"][/aux_col]\r\n[aux_col]32mm<br>\r\n127mm<br>\r\nCONNECTIVITY<br>\r\nWIRELESS REMOTE<br>\r\nWIRELESS WALLSWTICH<br>\r\nWIRED WALLSWITCH<br>\r\nTHIRDPARTY AUTOMATION<br>\r\nTO350[/aux_col]\r\n[/aux_row]\r\n\r\n&nbsp;'),(4025,61,'_auxin_meta_client','Product 6'),(4027,61,'_auxin_meta_release_date','189/03/22'),(4028,427,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\",\"text1_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e7f87f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d622d6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c82db98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\",\"id\":400,\"alt\":\"\",\"source\":\"library\"},\"display_ribbon\":\"\",\"ribbon_text\":\"NEW\",\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":false},{\"id\":\"bc44bae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"121037b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"3137cf9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"5a3ec6f\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"7a29862\"},{\"_id\":\"413044c\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"3442661\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"}],\"align\":\"flex-start\",\"connector\":\"\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4029,427,'_wp_page_template','default'),(4030,427,'_elementor_edit_mode','builder'),(4031,427,'_elementor_template_type','wp-post'),(4032,427,'_elementor_version','3.5.6'),(4033,427,'_thumbnail_id','11'),(4034,427,'_elementor_page_assets','a:0:{}'),(4036,428,'_elementor_data','[{\"id\":\"da0174d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"23a2ff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c041cdb\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":400,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\"},{\"id\":401,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/motor__53392.1603756808.jpg\"},{\"id\":402,\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/tracks__42131.1478057120.jpg\"}],\"columns\":\"3\"},\"elements\":[],\"widgetType\":\"aux-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b1eb95c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"07da20b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf4deeb\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"f1c83f9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"8a36398\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"905761c\"},{\"_id\":\"0a6eaf6\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"ab1ac06\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"},{\"_id\":\"2c854d1\",\"text_primary\":\"5YEARS WARRANTY\"},{\"_id\":\"0e40391\",\"text_primary\":\"DUAL CHANNEL\"},{\"_id\":\"beb7fd3\",\"text_primary\":\"HEAVY TRACK\"},{\"_id\":\"446513e\",\"text_primary\":\"SPECIFICATIONS\"},{\"_id\":\"c15c0c7\",\"text_primary\":\"TRACK LENGTH UPTO 20 METERS\"},{\"_id\":\"a757c04\",\"text_primary\":\"HEAVY DUTY METALRUNNERSWITH DUAL BEARING\"},{\"_id\":\"44b4c24\",\"text_primary\":\"DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING\"},{\"_id\":\"079b33c\",\"text_primary\":\"SILENT, STABLE AND DURABLE\"},{\"_id\":\"bbce0df\",\"text_primary\":\"RUNNER\"},{\"_id\":\"3227b31\",\"text_primary\":\"&TRACK\"},{\"_id\":\"7d3ac7e\",\"text_primary\":\"32mm.\"},{\"_id\":\"79fe7c6\",\"text_primary\":\"127mm\"},{\"_id\":\"4c9a9a9\",\"text_primary\":\"CONNECTIVITY\"},{\"_id\":\"06e2b46\",\"text_primary\":\"WIRELESS REMOTE\"},{\"_id\":\"0155449\",\"text_primary\":\"WIRELESS WALLSWTICH\"},{\"_id\":\"374ad66\",\"text_primary\":\"WIRED WALLSWITCH\"},{\"_id\":\"17a3c44\",\"text_primary\":\"THIRDPARTY AUTOMATION\"},{\"_id\":\"4ead46d\",\"text_primary\":\"TO350\"}],\"direction\":\"horizontal\",\"list_width\":{\"unit\":\"px\",\"size\":123,\"sizes\":[]},\"list_column_gutter\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"align\":\"flex-start\",\"connector\":\"\",\"text1_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e7f87f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d622d6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c82db98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demoweblinks.in\\/naishautomation\\/wp-content\\/uploads\\/2022\\/03\\/structure__77634.webp\",\"id\":400,\"alt\":\"\",\"source\":\"library\"},\"display_ribbon\":\"\",\"ribbon_text\":\"NEW\",\"lightbox\":\"yes\"},\"elements\":[],\"widgetType\":\"aux_image\"}],\"isInner\":false},{\"id\":\"bc44bae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"121037b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"text_primary\":\"POWERFULL\",\"icon\":\"check-1\",\"_id\":\"3137cf9\"},{\"text_primary\":\"MOTOR\",\"icon\":\"check-1\",\"_id\":\"5a3ec6f\"},{\"text_primary\":\"LARGETORQUE\",\"icon\":\"check-1\",\"_id\":\"7a29862\"},{\"_id\":\"413044c\",\"text_primary\":\"SPEED ADJUSTABLE\"},{\"_id\":\"3442661\",\"text_primary\":\"LOAD CAPACITY UPTO 300KG\"}],\"align\":\"flex-start\",\"connector\":\"\"},\"elements\":[],\"widgetType\":\"aux_icon_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4037,428,'_wp_page_template','default'),(4038,428,'_elementor_edit_mode','builder'),(4039,428,'_elementor_template_type','wp-post'),(4040,428,'_elementor_version','3.5.6'),(4041,428,'_thumbnail_id','11'),(4042,428,'_elementor_page_assets','a:0:{}'),(4044,429,'_elementor_data','[]'),(4045,429,'_wp_page_template','default'),(4046,429,'_elementor_edit_mode','builder'),(4047,429,'_elementor_template_type','wp-post'),(4048,429,'_elementor_version','3.5.6'),(4049,429,'_thumbnail_id','11'),(4050,429,'_elementor_page_assets','a:0:{}'),(4055,61,'aux_custom_bg_image','31'),(4082,400,'_edit_lock','1647606516:1'),(4140,75,'_elementor_css','a:6:{s:4:\"time\";i:1647608353;s:5:\"fonts\";a:2:{i:0;s:5:\"Heebo\";i:2;s:5:\"Mukta\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4141,73,'_elementor_css','a:6:{s:4:\"time\";i:1647608354;s:5:\"fonts\";a:2:{i:0;s:5:\"Mukta\";i:1;s:5:\"Heebo\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4142,76,'_elementor_css','a:6:{s:4:\"time\";i:1647608354;s:5:\"fonts\";a:1:{i:0;s:5:\"Heebo\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4143,69,'_elementor_css','a:6:{s:4:\"time\";i:1647608354;s:5:\"fonts\";a:1:{i:0;s:5:\"Heebo\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4144,72,'_elementor_css','a:6:{s:4:\"time\";i:1647608362;s:5:\"fonts\";a:2:{i:0;s:5:\"Mukta\";i:1;s:5:\"Heebo\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4145,61,'_elementor_css','a:7:{s:4:\"time\";i:1647608410;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(4146,74,'_elementor_css','a:6:{s:4:\"time\";i:1647609403;s:5:\"fonts\";a:5:{i:0;s:7:\"Poppins\";i:1;s:5:\"Heebo\";i:3;s:5:\"Mukta\";i:17;s:7:\"Raleway\";i:34;s:10:\"Montserrat\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:6;s:16:\"auxin-front-icon\";i:7;s:17:\"auxin-front-icon2\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4147,53,'_elementor_css','a:6:{s:4:\"time\";i:1647609404;s:5:\"fonts\";a:2:{i:0;s:5:\"Heebo\";i:1;s:5:\"Mukta\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4148,52,'_elementor_css','a:6:{s:4:\"time\";i:1647609404;s:5:\"fonts\";a:2:{i:0;s:5:\"Heebo\";i:1;s:5:\"Mukta\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4149,51,'_elementor_css','a:6:{s:4:\"time\";i:1647609404;s:5:\"fonts\";a:2:{i:0;s:5:\"Heebo\";i:1;s:5:\"Mukta\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4150,71,'_elementor_css','a:6:{s:4:\"time\";i:1647845266;s:5:\"fonts\";a:4:{i:0;s:5:\"Mukta\";i:1;s:5:\"Heebo\";i:18;s:7:\"Poppins\";i:21;s:7:\"Raleway\";}s:5:\"icons\";a:1:{i:0;s:16:\"auxin-front-icon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=448 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (2,1,'2022-03-11 10:31:39','2022-03-11 10:31:39','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://demoweblinks.in/naishautomation/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2022-03-11 10:31:39','2022-03-11 10:31:39','',0,'http://demoweblinks.in/naishautomation/?page_id=2',0,'page','',0),(3,1,'2022-03-11 10:31:39','2022-03-11 10:31:39','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://demoweblinks.in/naishautomation.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2022-03-11 10:31:39','2022-03-11 10:31:39','',0,'http://demoweblinks.in/naishautomation/?page_id=3',0,'page','',0),(5,1,'2022-03-11 10:32:35','2022-03-11 10:32:35','','Default Kit','','publish','closed','closed','','default-kit','','','2022-03-11 10:32:35','2022-03-11 10:32:35','',0,'http://demoweblinks.in/naishautomation/?p=5',0,'elementor_library','',0),(7,1,'2022-03-11 10:35:14','2022-03-11 10:35:14','','Header-agency','','publish','closed','closed','','header-agency','','','2022-03-11 10:35:14','2022-03-11 10:35:14','',0,'http://demoweblinks.in/naishautomation/?elementor_library=header-agency',0,'elementor_library','',0),(8,1,'2022-03-11 10:37:53','2022-03-11 10:37:53','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@demoweblinks.in>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@demoweblinks.in>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2022-03-11 10:37:53','2022-03-11 10:37:53','',0,'http://demoweblinks.in/naishautomation/?post_type=wpcf7_contact_form&p=8',0,'wpcf7_contact_form','',0),(10,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-1366-tyler-schaefer-bODOLilbwJs-unsplash-1','','inherit','open','closed','','demo-attachment-1366-tyler-schaefer-bodolilbwjs-unsplash-1','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1.png',0,'attachment','image/png',0),(11,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-1365-708_2-35060-1','','inherit','open','closed','','demo-attachment-1365-708_2-35060-1','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1.png',0,'attachment','image/png',0),(12,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-1364-connor-wang-MNz7IGrcEl0-unsplash-1','','inherit','open','closed','','demo-attachment-1364-connor-wang-mnz7igrcel0-unsplash-1','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1.png',0,'attachment','image/png',0),(13,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1','','inherit','open','closed','','demo-attachment-1363-gilles-desjardins-1rbs-8oyxmo-unsplash-1','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png',0,'attachment','image/png',0),(14,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1','','inherit','open','closed','','demo-attachment-1362-meric-dagli-kgdkiezx3ca-unsplash-1','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png',0,'attachment','image/png',0),(15,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1','','inherit','open','closed','','demo-attachment-1361-jason-leung-poi7delfiva-unsplash-1','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png',0,'attachment','image/png',0),(16,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1','','inherit','open','closed','','demo-attachment-1360-thai-an-be6ciwyscvu-unsplash-1','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png',0,'attachment','image/png',0),(17,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1','','inherit','open','closed','','demo-attachment-1359-ricardo-gomez-angel-u_riwem5pim-unsplash-1','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png',0,'attachment','image/png',0),(18,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-1358-volkan-vardar-y7RW7g2izy0-unsplash-1','','inherit','open','closed','','demo-attachment-1358-volkan-vardar-y7rw7g2izy0-unsplash-1','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1.png',0,'attachment','image/png',0),(19,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-1199-Group_88','','inherit','open','closed','','demo-attachment-1199-group_88','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png',0,'attachment','image/png',0),(20,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-1134-Untitled','','inherit','open','closed','','demo-attachment-1134-untitled','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Untitled.png',0,'attachment','image/png',0),(21,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash','','inherit','open','closed','','demo-attachment-806-shunya-koide-lngrgtmftcy-unsplash','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png',0,'attachment','image/png',0),(22,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-784-architecture-building-city-of-arts-and-sciences-256150','','inherit','open','closed','','demo-attachment-784-architecture-building-city-of-arts-and-sciences-256150','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/architecture-building-city-of-arts-and-sciences-256150.png',0,'attachment','image/png',0),(23,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F','','inherit','open','closed','','demo-attachment-779-portrait-of-a-confident-man-over-gray-background-pdl3q9f','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg',0,'attachment','image/jpeg',0),(24,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-777-Full-body-portrait-of-professional-business-woman','','inherit','open','closed','','demo-attachment-777-full-body-portrait-of-professional-business-woman','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg',0,'attachment','image/jpeg',0),(25,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE','','inherit','open','closed','','demo-attachment-776-cheerful-young-businesswoman-standing-near-p5a34je','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg',0,'attachment','image/jpeg',0),(26,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-773-Mask-Group-844449@2x','','inherit','open','closed','','demo-attachment-773-mask-group-8444492x','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg',0,'attachment','image/jpeg',0),(27,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX','','inherit','open','closed','','demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4a829tx','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png',0,'attachment','image/png',0),(28,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-737-Mask-Group-84448@2x@2x','','inherit','open','closed','','demo-attachment-737-mask-group-844482x2x','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg',0,'attachment','image/jpeg',0),(29,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-712-jason-leung-poI7DelFiVA-unsplash','','inherit','open','closed','','demo-attachment-712-jason-leung-poi7delfiva-unsplash','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png',0,'attachment','image/png',0),(30,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash','','inherit','open','closed','','demo-attachment-670-bckfwd-ob1ejlokn3e-unsplash','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png',0,'attachment','image/png',0),(31,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash','','inherit','open','closed','','demo-attachment-651-ricardo-gomez-angel-u_riwem5pim-unsplash','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png',0,'attachment','image/png',0),(32,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-638-thai-an-BE6CIwysCvU-unsplash','','inherit','open','closed','','demo-attachment-638-thai-an-be6ciwyscvu-unsplash','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash.png',0,'attachment','image/png',0),(33,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-559-client-7@2x','','inherit','open','closed','','demo-attachment-559-client-72x','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png',0,'attachment','image/png',0),(34,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-555-client-9@2x','','inherit','open','closed','','demo-attachment-555-client-92x','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png',0,'attachment','image/png',0),(35,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-553-client-4@2x','','inherit','open','closed','','demo-attachment-553-client-42x','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png',0,'attachment','image/png',0),(36,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-554-client-5@2x','','inherit','open','closed','','demo-attachment-554-client-52x','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png',0,'attachment','image/png',0),(37,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-552-client-3@2x','','inherit','open','closed','','demo-attachment-552-client-32x','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png',0,'attachment','image/png',0),(38,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-551-client-1@2x','','inherit','open','closed','','demo-attachment-551-client-12x','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png',0,'attachment','image/png',0),(39,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash','','inherit','open','closed','','demo-attachment-486-ricardo-gomez-ansswwg22el-u_riwem5pim-unsplash','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png',0,'attachment','image/png',0),(40,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash','','inherit','open','closed','','demo-attachment-461-sean-pollock-phyq704ffda-unsplash','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png',0,'attachment','image/png',0),(41,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-419-Mask-Group-89@2x','','inherit','open','closed','','demo-attachment-419-mask-group-892x','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png',0,'attachment','image/png',0),(42,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-417-Mask-Group-84@2x','','inherit','open','closed','','demo-attachment-417-mask-group-842x','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png',0,'attachment','image/png',0),(43,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-418-Mask-Group-85','','inherit','open','closed','','demo-attachment-418-mask-group-85','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png',0,'attachment','image/png',0),(44,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-289-sunyu-kim-q1rwmAmRSBM-unsplash','','inherit','open','closed','','demo-attachment-289-sunyu-kim-q1rwmamrsbm-unsplash','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.png',0,'attachment','image/png',0),(45,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash','','inherit','open','closed','','demo-attachment-249-connor-wang-mnz7igrcel0-unsplash','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png',0,'attachment','image/png',0),(46,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-175-homeentrance02_03-12361','','inherit','open','closed','','demo-attachment-175-homeentrance02_03-12361','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png',0,'attachment','image/png',0),(47,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash','','inherit','open','closed','','demo-attachment-174-tim-durgan-2p3eh98ty2s-unsplash','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png',0,'attachment','image/png',0),(48,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-52-volkan-vardar-y7RW7g2izy0-unsplash','','inherit','open','closed','','demo-attachment-52-volkan-vardar-y7rw7g2izy0-unsplash','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash.png',0,'attachment','image/png',0),(49,1,'2022-03-11 10:41:14','2022-03-11 10:41:14','','demo-attachment-20-Group-110','','inherit','open','closed','','demo-attachment-20-group-110','','','2022-03-11 10:41:14','2022-03-11 10:41:14','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Group-110.png',0,'attachment','image/png',0),(51,1,'2021-01-21 08:02:04','2021-01-21 08:02:04','<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>','Testimonial 6','','publish','closed','closed','','testimonial-6','','','2021-01-21 08:02:04','2021-01-21 08:02:04','',0,'http://demoweblinks.in/naishautomation/?elementor_library=testimonial-6',0,'elementor_library','',0),(52,1,'2021-01-21 07:59:50','2021-01-21 07:59:50','<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->','Testimonial 5','','publish','closed','closed','','testimonial-5','','','2021-01-21 07:59:50','2021-01-21 07:59:50','',0,'http://demoweblinks.in/naishautomation/?elementor_library=testimonial-5',0,'elementor_library','',0),(53,1,'2021-01-21 07:42:09','2021-01-21 07:42:09','<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->','Testimonial 4','','publish','closed','closed','','testimonial-4','','','2021-01-21 07:42:09','2021-01-21 07:42:09','',0,'http://demoweblinks.in/naishautomation/?elementor_library=testimonial-4',0,'elementor_library','',0),(54,1,'2022-03-11 10:41:23','2022-03-11 10:41:23','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}\n\n\n.type-portfolio.aux-side-top  {\n	margin: 120px auto;align-content\n}\n\n\n','phlox-pro','','publish','closed','closed','','phlox-pro','','','2022-03-18 12:59:09','2022-03-18 12:59:09','',0,'http://demoweblinks.in/naishautomation/2022/03/11/phlox-pro/',0,'custom_css','',0),(55,1,'2022-03-11 10:41:23','2022-03-11 10:41:23','','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-11 10:41:23','2022-03-11 10:41:23','',54,'http://demoweblinks.in/naishautomation/?p=55',0,'revision','',0),(56,1,'2020-10-18 11:22:50','2020-10-18 11:22:50','','Product1','','publish','closed','closed','','product1','','','2022-03-17 07:10:30','2022-03-17 07:10:30','',0,'http://demoweblinks.in/naishautomation/portfolio/design-role/',0,'portfolio','',0),(57,1,'2020-10-18 11:11:37','2020-10-18 11:11:37','','Product2','','publish','closed','closed','','product2','','','2022-03-17 06:03:10','2022-03-17 06:03:10','',0,'http://demoweblinks.in/naishautomation/portfolio/means-of-design/',0,'portfolio','',0),(58,1,'2020-10-18 11:10:59','2020-10-18 11:10:59','','Product3','','publish','closed','closed','','product3','','','2022-03-17 06:03:23','2022-03-17 06:03:23','',0,'http://demoweblinks.in/naishautomation/portfolio/environmental-role/',0,'portfolio','',0),(59,1,'2020-10-18 10:46:40','2020-10-18 10:46:40','','Product4','','publish','closed','closed','','product4','','','2022-03-17 06:03:35','2022-03-17 06:03:35','',0,'http://demoweblinks.in/naishautomation/portfolio/construction-role/',0,'portfolio','',0),(60,1,'2020-10-18 10:44:56','2020-10-18 10:44:56','','Product5','','publish','closed','closed','','product5','','','2022-03-17 06:03:45','2022-03-17 06:03:45','',0,'http://demoweblinks.in/naishautomation/portfolio/lighting-design/',0,'portfolio','',0),(61,1,'2020-10-18 10:42:33','2020-10-18 10:42:33','','Product6','','publish','closed','closed','','product6','','','2022-03-18 13:05:23','2022-03-18 13:05:23','',0,'http://demoweblinks.in/naishautomation/portfolio/alternate-practice/',0,'portfolio','',0),(64,1,'2020-10-13 10:44:24','2020-10-13 10:44:24','[text* text-289 placeholder \"Name*\"]\r\n[text* text-289 placeholder \"Family*\"]\r\n[text* text-289 placeholder \"Subject*\"]\r\n[textarea* textarea-998 placeholder \"message*\"]\r\n[submit \"SEND NOW\"]\n1\nArchitect Pro - Phlox Elementor WordPress Theme  \"[your-subject]\"\nArchitect Pro - Phlox Elementor WordPress Theme  \nsarairezanejad@gmail.com\nFrom: [your-name] \r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Architect Pro - Phlox Elementor WordPress Theme  (https://demo.phlox.pro/portfolio-architect)\nReply-To: [your-email]\n\n\n\n\nArchitect Pro - Phlox Elementor WordPress Theme  \"[your-subject]\"\nArchitect Pro - Phlox Elementor WordPress Theme  \n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Architect Pro - Phlox Elementor WordPress Theme  (https://demo.phlox.pro/portfolio-architect)\nReply-To: sarairezanejad@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','contact form','','publish','closed','closed','','contact-form','','','2020-10-13 10:44:24','2020-10-13 10:44:24','',0,'http://demoweblinks.in/naishautomation/?post_type=wpcf7_contact_form&p=64',0,'wpcf7_contact_form','',0),(69,1,'2020-10-05 13:28:32','2020-10-05 13:28:32','<section>\n            <h2>Lets Talk About Your Project.</h2>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Phone:</h2><p>+123 4567 890</p>\n        </section>		\n			<section>\n            <h2>Address:</h2><p>Address 123 line 2</p>\n        </section>		\n			<section>\n            <h2>Email:</h2><p>info@yourdomain.com</p>\n        </section>		\n			<section>\n            <h2>Social:</h2>\n        </section>		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >face book -</a></li><li ><a href=\"#\" >youtube -</a></li><li ><a href=\"#\" >instagram </a></li><li ><a href=\"#\" >twitter -</a></li><li ><a href=\"#\" >behance</a></li></ul></section><!-- widget-container -->		\n			<a title=\"Naish Automation\" href=\"http://demoweblinks.in/naishautomation/\"  ><img width=\"177\" height=\"57\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Group-110.png\" alt=\"demo-attachment-20-Group-110\" data-ratio=\"3.11\" data-original-w=\"177\" /></a><a title=\"Naish Automation\" href=\"http://demoweblinks.in/naishautomation/\"  ><img width=\"177\" height=\"57\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Group-110.png\" alt=\"demo-attachment-20-Group-110\" data-ratio=\"3.11\" data-original-w=\"177\" /></a><section><h3><a href=\"http://demoweblinks.in/naishautomation/\" title=\"Naish Automation\">Naish Automation</a></h3><p>Just another WordPress site</p></section>		\n			<small>&copy; 2022 Amaeka Technologies</small>','Site Footer','','publish','closed','closed','','site-footer','','','2022-03-14 06:41:36','2022-03-14 06:41:36','',0,'http://demoweblinks.in/naishautomation/?elementor_library=site-footer',0,'elementor_library','',0),(70,1,'2020-10-05 12:38:38','2020-10-05 12:38:38','<section>\n            <h5>Contact us</h5><h3>Ready to start project let\'s talk</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings.</p>\n        </section>		\n			<section style=\"\" >            \n            <!-- @TODO - The output for element here -->\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/naishautomation/wp-admin/admin-ajax.php#wpcf7-f64-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"64\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.6\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f64-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input type=\"text\" name=\"text-289\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" /><br />\n<input type=\"text\" name=\"text-289\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Family*\" /><br />\n<input type=\"text\" name=\"text-289\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject*\" /><br />\n<textarea name=\"textarea-998\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"message*\"></textarea><br />\n<input type=\"submit\" value=\"SEND NOW\" /></p>\n</form>\n            <!-- aux-col-wrapper -->\n    </section><!-- widget-container -->		\n			<section>\n            <h2>Contact</h2>\n        </section>		\n                    Google Maps API Key Is Missing.                \n                    In order to use google maps on your website, you have to create an api key and insert it in customizer &quot;Google Maps API Key&quot; field.                \n			<section>\n            <h2>Phone:</h2><p>+123 4567 890</p>\n        </section>		\n			<section>\n            <h2>Address:</h2><p>Asdress 123,line 2</p>\n        </section>		\n			<section>\n            <h2>Email:</h2><p>info@yourdomain.com</p>\n        </section>','Contact','','publish','closed','closed','','contact','','','2022-03-14 09:20:51','2022-03-14 09:20:51','',0,'http://demoweblinks.in/naishautomation/contact/',0,'page','',0),(71,1,'2020-10-05 12:38:09','2020-10-05 12:38:09','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','publish','closed','closed','','services','','','2022-03-17 05:09:50','2022-03-17 05:09:50','',0,'http://demoweblinks.in/naishautomation/services/',0,'page','',0),(72,1,'2020-10-05 12:37:28','2020-10-05 12:37:28','<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section style=\"\" ><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">-->\n                                            Product1                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"56\"\n					data-ulike-nonce=\"477bd10ce2\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_56\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">-->\n                                            Product2                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"57\"\n					data-ulike-nonce=\"fb6c1e04ff\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_57\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">-->\n                                            Product3                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"58\"\n					data-ulike-nonce=\"eff0b23ece\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_58\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">-->\n                                            Product4                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"59\"\n					data-ulike-nonce=\"cee1519b74\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_59\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">-->\n                                            Product5                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"60\"\n					data-ulike-nonce=\"018d65b28d\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_60\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\">-->\n                                            Product6                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"61\"\n					data-ulike-nonce=\"ac6b0a21fd\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_61\"></button>			\n                        </article>\n</section><!-- widget-container -->','Products','','publish','closed','closed','','products','','','2022-03-17 12:08:29','2022-03-17 12:08:29','',0,'http://demoweblinks.in/naishautomation/project/',0,'page','',0),(73,1,'2020-10-05 12:36:53','2020-10-05 12:36:53','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2></h2>\n        </section>		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials','About','','publish','closed','closed','','about','','','2022-03-17 04:49:05','2022-03-17 04:49:05','',0,'http://demoweblinks.in/naishautomation/about/',0,'page','',0),(74,1,'2020-10-05 12:36:23','2020-10-05 12:36:23','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n</section><!-- widget-container -->		\n                    <a href=\"http://demoweblinks.in/naishautomation/products/\">\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','publish','closed','closed','','home','','','2022-03-17 11:41:25','2022-03-17 11:41:25','',0,'http://demoweblinks.in/naishautomation/home/',0,'page','',0),(75,1,'2020-10-05 12:30:35','2020-10-05 12:30:35','','Default Kit','','publish','closed','closed','','default-kit-2','','','2022-03-18 12:59:09','2022-03-18 12:59:09','',0,'http://demoweblinks.in/naishautomation/?elementor_library=default-kit-2',0,'elementor_library','',0),(76,1,'2020-10-05 12:28:59','2020-10-05 12:28:59','<a title=\"Architect Pro &#8211; Phlox Elementor WordPress Theme\" href=\"https://demo.phlox.pro/portfolio-architect/\"  ><img width=\"194\" height=\"72\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/11/Group_111.jpg\" alt=\"Group_111\" data-ratio=\"2.69\" data-original-w=\"194\" /></a><a title=\"Architect Pro &#8211; Phlox Elementor WordPress Theme\" href=\"https://demo.phlox.pro/portfolio-architect/\"  ><img width=\"177\" height=\"57\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Group-110.png\" alt=\"Group 110\" data-ratio=\"3.11\" data-original-w=\"177\" /></a><section><h3><a href=\"https://demo.phlox.pro/portfolio-architect/\" title=\"Architect Pro &#8211; Phlox Elementor WordPress Theme \">Architect Pro - Phlox Elementor WordPress Theme </a></h3><p>Just another Phlox Demos Sites site</p></section>		\n			<section>\n            <h5>CALL US! (+1) 888654321</h5>\n        </section>		\n			<!-- start master menu -->\n<nav id=\"master-menu-elementor-4cd48f0\">\n	<ul id=\"menu-header-menu\" data-type=\"horizontal\"  data-switch-type=\"toggle\" data-switch-parent=\".elementor-element-4cd48f0 .aux-fs-popup .aux-fs-menu\" data-switch-width=\"9000\"  >\n		<!-- start single menu -->\n		<li id=\"menu-item-41\">\n			<a href=\"https://demo.phlox.pro/portfolio-architect/\">\n				Home\n			</a>\n		</li>\n		<!-- end single menu -->\n		<!-- start single menu -->\n		<li id=\"menu-item-42\">\n			<a href=\"https://demo.phlox.pro/portfolio-architect/about/\">\n				About\n			</a>\n		</li>\n		<!-- end single menu -->\n		<!-- start single menu -->\n		<li id=\"menu-item-43\">\n			<a href=\"https://demo.phlox.pro/portfolio-architect/project/\">\n				Project\n			</a>\n		</li>\n		<!-- end single menu -->\n		<!-- start single menu -->\n		<li id=\"menu-item-44\">\n			<a href=\"https://demo.phlox.pro/portfolio-architect/services/\">\n				Services\n			</a>\n		</li>\n		<!-- end single menu -->\n		<!-- start single menu -->\n		<li id=\"menu-item-45\">\n			<a href=\"https://demo.phlox.pro/portfolio-architect/contact/\">\n				Contact\n			</a>\n		</li>\n		<!-- end single menu -->\n	</ul>\n</nav>\n<!-- end master menu -->\n<section></section>','Site Header','','publish','closed','closed','','site-header','','','2020-10-05 12:28:59','2020-10-05 12:28:59','',0,'http://demoweblinks.in/naishautomation/?elementor_library=site-header',0,'elementor_library','',0),(77,1,'2022-03-17 07:29:12','2022-03-11 10:42:12',' ','','','publish','closed','closed','','77','','','2022-03-17 07:29:12','2022-03-17 07:29:12','',0,'http://demoweblinks.in/naishautomation/2022/03/11/77/',1,'nav_menu_item','',0),(78,1,'2022-03-17 07:29:12','2022-03-11 10:42:13',' ','','','publish','closed','closed','','78','','','2022-03-17 07:29:12','2022-03-17 07:29:12','',0,'http://demoweblinks.in/naishautomation/2022/03/11/78/',2,'nav_menu_item','',0),(79,1,'2022-03-17 07:29:12','2022-03-11 10:42:13',' ','','','publish','closed','closed','','79','','','2022-03-17 07:29:12','2022-03-17 07:29:12','',0,'http://demoweblinks.in/naishautomation/2022/03/11/79/',3,'nav_menu_item','',0),(80,1,'2022-03-17 07:29:12','2022-03-11 10:42:13',' ','','','publish','closed','closed','','80','','','2022-03-17 07:29:12','2022-03-17 07:29:12','',0,'http://demoweblinks.in/naishautomation/2022/03/11/80/',4,'nav_menu_item','',0),(81,1,'2022-03-17 07:29:12','2022-03-11 10:42:13',' ','','','publish','closed','closed','','81','','','2022-03-17 07:29:12','2022-03-17 07:29:12','',0,'http://demoweblinks.in/naishautomation/2022/03/11/81/',7,'nav_menu_item','',0),(82,1,'2022-03-11 10:50:26','2022-03-11 10:50:26','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>Architecture and Decor.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of art</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"754\" height=\"985\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.png\" alt=\"demo-attachment-289-sunyu-kim-q1rwmAmRSBM-unsplash\" data-ratio=\"0.77\" data-original-w=\"754\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5></h5><h3>Let Your Home Be UniqueStylish.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section>\n            <h2><p>01</p></h2><h3>Client Needs</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>02</p></h2><h3>Planning Design</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>03</p></h2><h3>Architect Sketch</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h5>Projects</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Project                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','arcitecture-home','','publish','closed','closed','','arcitecture-home','','','2022-03-11 10:50:27','2022-03-11 10:50:27','',0,'http://demoweblinks.in/naishautomation/?elementor_library=arcitecture-home',0,'elementor_library','',0),(83,1,'2022-03-11 10:50:27','2022-03-11 10:50:27','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>Architecture and Decor.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of art</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"754\" height=\"985\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.png\" alt=\"demo-attachment-289-sunyu-kim-q1rwmAmRSBM-unsplash\" data-ratio=\"0.77\" data-original-w=\"754\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5></h5><h3>Let Your Home Be UniqueStylish.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section>\n            <h2><p>01</p></h2><h3>Client Needs</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>02</p></h2><h3>Planning Design</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>03</p></h2><h3>Architect Sketch</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h5>Projects</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Project                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','arcitecture-home','','inherit','closed','closed','','82-revision-v1','','','2022-03-11 10:50:27','2022-03-11 10:50:27','',82,'http://demoweblinks.in/naishautomation/?p=83',0,'revision','',0),(84,1,'2022-03-11 10:51:43','2022-03-11 10:51:43','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>Architecture and Decor.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/homeentrance02_03-12361.jpg\" alt=\"home+entrance+02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tim-durgan-2P3eh98tY2s-unsplash.jpg\" alt=\"tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of art</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash.jpg\" alt=\"connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"754\" height=\"985\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.jpg\" alt=\"sunyu-kim-q1rwmAmRSBM-unsplash\" data-ratio=\"0.77\" data-original-w=\"754\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5></h5><h3>Let Your Home Be UniqueStylish.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section>\n            <h2><p>01</p></h2><h3>Client Needs</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>02</p></h2><h3>Planning Design</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>03</p></h2><h3>Architect Sketch</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h5>Projects</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-12/\"><img width=\"606\" height=\"726\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.jpg\" alt=\"gilles-desjardins-1rBs-8OyxMo-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-12/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-11/\"><img width=\"606\" height=\"726\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.jpg\" alt=\"meric-dagli-KgDkiEzx3cA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-11/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-10/\"><img width=\"606\" height=\"726\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.jpg\" alt=\"jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-10/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-9/\"><img width=\"606\" height=\"726\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.jpg\" alt=\"ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-9/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-8/\"><img width=\"606\" height=\"726\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.jpg\" alt=\"thai-an-BE6CIwysCvU-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-8/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-7/\"><img width=\"606\" height=\"726\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.jpg\" alt=\"gilles-desjardins-1rBs-8OyxMo-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-7/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Project                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-1632 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-1632 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-1632 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-1632 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-1632 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-export-id=\"231-1632-4c837aa\" data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-1637 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-1637 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-1637 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-1637 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-1637 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-1637 .elementor-element.elementor-element-9598733 .col-title a, .elementor-1637 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-1637 .elementor-element.elementor-element-9598733 .col-title, .elementor-1637 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-1637 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-1637 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-1637 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-1637 .elementor-element.elementor-element-9598733 .col-title, .elementor-1637 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-1637 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-1637 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-1637 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-export-id=\"231-1637-5088fea\" data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-1641 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-1641 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-1641 .elementor-element.elementor-element-910ee03 .col-title, .elementor-1641 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-1641 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-1641 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-1641 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-1641 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-1641 .elementor-element.elementor-element-0145697{right:0px;}.elementor-1641 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-1641 .elementor-element.elementor-element-910ee03 .col-title, .elementor-1641 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-1641 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-1641 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-1641 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-export-id=\"231-1641-c5eac7f\" data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-1632 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-1632 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-1632 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-1632 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-1632 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-export-id=\"231-1632-4c837aa\" data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/sean-pollock-PhYq704ffdA-unsplash.jpg\" alt=\"sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/11/Group_88.png\" alt=\"Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.jpg\" alt=\"ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/client-3@2x.png\" alt=\"client (3)@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/client-1@2x.png\" alt=\"client (1)@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/client-4@2x.png\" alt=\"client (4)@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/client-5@2x.png\" alt=\"client (5)@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/client-9@2x.png\" alt=\"client-(9)@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/client-7@2x.png\" alt=\"client (7)@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 10:51:43','2022-03-11 10:51:43','',74,'http://demoweblinks.in/naishautomation/?p=84',0,'revision','',0),(85,1,'2022-03-11 10:51:43','2022-03-11 10:51:43','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>Architecture and Decor.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/homeentrance02_03-12361.jpg\" alt=\"home+entrance+02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tim-durgan-2P3eh98tY2s-unsplash.jpg\" alt=\"tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of art</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash.jpg\" alt=\"connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"754\" height=\"985\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.jpg\" alt=\"sunyu-kim-q1rwmAmRSBM-unsplash\" data-ratio=\"0.77\" data-original-w=\"754\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5></h5><h3>Let Your Home Be UniqueStylish.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section>\n            <h2><p>01</p></h2><h3>Client Needs</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>02</p></h2><h3>Planning Design</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>03</p></h2><h3>Architect Sketch</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h5>Projects</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-12/\"><img width=\"606\" height=\"726\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.jpg\" alt=\"gilles-desjardins-1rBs-8OyxMo-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-12/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-11/\"><img width=\"606\" height=\"726\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.jpg\" alt=\"meric-dagli-KgDkiEzx3cA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-11/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-10/\"><img width=\"606\" height=\"726\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.jpg\" alt=\"jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-10/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-9/\"><img width=\"606\" height=\"726\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.jpg\" alt=\"ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-9/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-8/\"><img width=\"606\" height=\"726\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.jpg\" alt=\"thai-an-BE6CIwysCvU-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-8/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-7/\"><img width=\"606\" height=\"726\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.jpg\" alt=\"gilles-desjardins-1rBs-8OyxMo-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-7/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Project                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-1632 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-1632 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-1632 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-1632 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-1632 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-export-id=\"231-1632-4c837aa\" data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-1637 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-1637 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-1637 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-1637 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-1637 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-1637 .elementor-element.elementor-element-9598733 .col-title a, .elementor-1637 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-1637 .elementor-element.elementor-element-9598733 .col-title, .elementor-1637 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-1637 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-1637 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-1637 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-1637 .elementor-element.elementor-element-9598733 .col-title, .elementor-1637 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-1637 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-1637 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-1637 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-1637 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-export-id=\"231-1637-5088fea\" data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-1641 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-1641 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-1641 .elementor-element.elementor-element-910ee03 .col-title, .elementor-1641 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-1641 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-1641 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-1641 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-1641 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-1641 .elementor-element.elementor-element-0145697{right:0px;}.elementor-1641 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-1641 .elementor-element.elementor-element-910ee03 .col-title, .elementor-1641 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-1641 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-1641 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-1641 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-1641 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-export-id=\"231-1641-c5eac7f\" data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-1632 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-1632 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-1632 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-1632 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-1632 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-1632 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-1632 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-export-id=\"231-1632-4c837aa\" data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/sean-pollock-PhYq704ffdA-unsplash.jpg\" alt=\"sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/11/Group_88.png\" alt=\"Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.jpg\" alt=\"ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/client-3@2x.png\" alt=\"client (3)@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/client-1@2x.png\" alt=\"client (1)@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/client-4@2x.png\" alt=\"client (4)@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/client-5@2x.png\" alt=\"client (5)@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/client-9@2x.png\" alt=\"client-(9)@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/client-7@2x.png\" alt=\"client (7)@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 10:51:43','2022-03-11 10:51:43','',74,'http://demoweblinks.in/naishautomation/?p=85',0,'revision','',0),(86,1,'2022-03-11 10:51:44','2022-03-11 10:51:44','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of art</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"754\" height=\"985\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.png\" alt=\"demo-attachment-289-sunyu-kim-q1rwmAmRSBM-unsplash\" data-ratio=\"0.77\" data-original-w=\"754\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5></h5><h3>Let Your Home Be UniqueStylish.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section>\n            <h2><p>01</p></h2><h3>Client Needs</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>02</p></h2><h3>Planning Design</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>03</p></h2><h3>Architect Sketch</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h5>Projects</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Project                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 10:51:44','2022-03-11 10:51:44','',74,'http://demoweblinks.in/naishautomation/?p=86',0,'revision','',0),(87,1,'2022-03-11 10:52:14','2022-03-11 10:52:14','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of art</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"754\" height=\"985\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.png\" alt=\"demo-attachment-289-sunyu-kim-q1rwmAmRSBM-unsplash\" data-ratio=\"0.77\" data-original-w=\"754\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5></h5><h3>Let Your Home Be UniqueStylish.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section>\n            <h2><p>01</p></h2><h3>Client Needs</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>02</p></h2><h3>Planning Design</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>03</p></h2><h3>Architect Sketch</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h5>Projects</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Project                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 10:52:14','2022-03-11 10:52:14','',74,'http://demoweblinks.in/naishautomation/?p=87',0,'revision','',0),(88,1,'2022-03-11 10:52:14','2022-03-11 10:52:14','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of art</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"754\" height=\"985\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.png\" alt=\"demo-attachment-289-sunyu-kim-q1rwmAmRSBM-unsplash\" data-ratio=\"0.77\" data-original-w=\"754\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5></h5><h3>Let Your Home Be UniqueStylish.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section>\n            <h2><p>01</p></h2><h3>Client Needs</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>02</p></h2><h3>Planning Design</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>03</p></h2><h3>Architect Sketch</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h5>Projects</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Project                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 10:52:14','2022-03-11 10:52:14','',74,'http://demoweblinks.in/naishautomation/?p=88',0,'revision','',0),(89,1,'2022-03-11 10:52:14','2022-03-11 10:52:14','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"754\" height=\"985\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.png\" alt=\"demo-attachment-289-sunyu-kim-q1rwmAmRSBM-unsplash\" data-ratio=\"0.77\" data-original-w=\"754\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5></h5><h3>Let Your Home Be UniqueStylish.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section>\n            <h2><p>01</p></h2><h3>Client Needs</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>02</p></h2><h3>Planning Design</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>03</p></h2><h3>Architect Sketch</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h5>Projects</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Project                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 10:52:14','2022-03-11 10:52:14','',74,'http://demoweblinks.in/naishautomation/?p=89',0,'revision','',0),(90,1,'2022-03-11 10:53:27','2022-03-11 10:53:27','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Design Project</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Office design</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in architect</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','arc-service','','publish','closed','closed','','arc-service','','','2022-03-11 10:53:27','2022-03-11 10:53:27','',0,'http://demoweblinks.in/naishautomation/?elementor_library=arc-service',0,'elementor_library','',0),(91,1,'2022-03-11 10:53:27','2022-03-11 10:53:27','','arc-service','','inherit','closed','closed','','90-revision-v1','','','2022-03-11 10:53:27','2022-03-11 10:53:27','',90,'http://demoweblinks.in/naishautomation/?p=91',0,'revision','',0),(92,1,'2022-03-11 10:53:27','2022-03-11 10:53:27','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Design Project</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Office design</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in architect</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','arc-service','','inherit','closed','closed','','90-revision-v1','','','2022-03-11 10:53:27','2022-03-11 10:53:27','',90,'http://demoweblinks.in/naishautomation/?p=92',0,'revision','',0),(94,1,'2022-03-11 10:58:55','2022-03-11 10:58:55','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"754\" height=\"985\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.png\" alt=\"demo-attachment-289-sunyu-kim-q1rwmAmRSBM-unsplash\" data-ratio=\"0.77\" data-original-w=\"754\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5></h5><h3>Let Your Home Be UniqueStylish.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section>\n            <h2><p>01</p></h2><h3>Client Needs</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>02</p></h2><h3>Planning Design</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>03</p></h2><h3>Architect Sketch</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h5>Projects</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Project                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 10:58:55','2022-03-11 10:58:55','',74,'http://demoweblinks.in/naishautomation/?p=94',0,'revision','',0),(95,1,'2022-03-11 10:58:55','2022-03-11 10:58:55','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"754\" height=\"985\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.png\" alt=\"demo-attachment-289-sunyu-kim-q1rwmAmRSBM-unsplash\" data-ratio=\"0.77\" data-original-w=\"754\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5></h5><h3>Let Your Home Be UniqueStylish.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section>\n            <h2><p>01</p></h2><h3>Client Needs</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>02</p></h2><h3>Planning Design</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h2><p>03</p></h2><h3>Architect Sketch</h3><p>A wonderful serenity has taken possession of my entire...</p>\n        </section>		\n			<section>\n            <h5>Projects</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Project                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 10:58:55','2022-03-11 10:58:55','',74,'http://demoweblinks.in/naishautomation/?p=95',0,'revision','',0),(96,1,'2022-03-11 10:58:58','2022-03-11 10:58:58','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Project                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 10:58:58','2022-03-11 10:58:58','',74,'http://demoweblinks.in/naishautomation/?p=96',0,'revision','',0),(97,1,'2022-03-11 11:01:02','2022-03-11 11:01:02','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Project                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 11:01:02','2022-03-11 11:01:02','',74,'http://demoweblinks.in/naishautomation/?p=97',0,'revision','',0),(98,1,'2022-03-11 11:01:02','2022-03-11 11:01:02','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Project                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 11:01:02','2022-03-11 11:01:02','',74,'http://demoweblinks.in/naishautomation/?p=98',0,'revision','',0),(99,1,'2022-03-11 11:01:02','2022-03-11 11:01:02','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 11:01:02','2022-03-11 11:01:02','',74,'http://demoweblinks.in/naishautomation/?p=99',0,'revision','',0),(100,1,'2022-03-11 11:11:20','2022-03-11 11:11:20','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 11:11:20','2022-03-11 11:11:20','',74,'http://demoweblinks.in/naishautomation/?p=100',0,'revision','',0),(101,1,'2022-03-11 11:11:20','2022-03-11 11:11:20','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 11:11:20','2022-03-11 11:11:20','',74,'http://demoweblinks.in/naishautomation/?p=101',0,'revision','',0),(102,1,'2022-03-11 11:11:21','2022-03-11 11:11:21','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-940x1126.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-940x1126.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-940x1126.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-940x1126.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-940x1126.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-940x1126.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 11:11:21','2022-03-11 11:11:21','',74,'http://demoweblinks.in/naishautomation/?p=102',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (103,1,'2022-03-11 11:12:54','2022-03-11 11:12:54','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-940x1126.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-940x1126.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-940x1126.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-940x1126.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-940x1126.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-940x1126.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 11:12:54','2022-03-11 11:12:54','',74,'http://demoweblinks.in/naishautomation/?p=103',0,'revision','',0),(104,1,'2022-03-11 11:12:54','2022-03-11 11:12:54','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-940x1126.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-940x1126.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-940x1126.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-940x1126.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-940x1126.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-940x1126.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-940x1126.png 940w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,940px\" /></a>                                \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 11:12:54','2022-03-11 11:12:54','',74,'http://demoweblinks.in/naishautomation/?p=104',0,'revision','',0),(105,1,'2022-03-11 11:12:54','2022-03-11 11:12:54','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 11:12:54','2022-03-11 11:12:54','',74,'http://demoweblinks.in/naishautomation/?p=105',0,'revision','',0),(106,1,'2022-03-11 11:14:19','2022-03-11 11:14:19','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 11:14:19','2022-03-11 11:14:19','',74,'http://demoweblinks.in/naishautomation/?p=106',0,'revision','',0),(107,1,'2022-03-11 11:14:19','2022-03-11 11:14:19','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 11:14:19','2022-03-11 11:14:19','',74,'http://demoweblinks.in/naishautomation/?p=107',0,'revision','',0),(109,1,'2022-03-11 12:26:22','2022-03-11 12:26:22','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Design Project</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Office design</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.jpg\" alt=\"ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in architect</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/bckfwd-oB1EJLokN3E-unsplash.jpg\" alt=\"bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-11 12:26:22','2022-03-11 12:26:22','',71,'http://demoweblinks.in/naishautomation/?p=109',0,'revision','',0),(110,1,'2022-03-11 12:26:22','2022-03-11 12:26:22','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Design Project</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Office design</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.jpg\" alt=\"ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in architect</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/bckfwd-oB1EJLokN3E-unsplash.jpg\" alt=\"bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-11 12:26:22','2022-03-11 12:26:22','',71,'http://demoweblinks.in/naishautomation/?p=110',0,'revision','',0),(111,1,'2022-03-11 12:26:23','2022-03-11 12:26:23','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Design Project</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Office design</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in architect</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-440x330.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-440x330.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-440x330.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-440x330.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-440x330.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"56\"\n					data-ulike-nonce=\"7379e35b53\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_56\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"57\"\n					data-ulike-nonce=\"6029bcd9b1\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_57\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"58\"\n					data-ulike-nonce=\"945e6b4934\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_58\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"59\"\n					data-ulike-nonce=\"ab5effb704\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_59\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"60\"\n					data-ulike-nonce=\"abcc770cfe\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_60\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"61\"\n					data-ulike-nonce=\"170ab69f70\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_61\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-designer/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-designer/\">\n                                            Architectural designer                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"62\"\n					data-ulike-nonce=\"76ab10a24d\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_62\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-drawing/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-drawing/\">\n                                            Architectural drawing                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"63\"\n					data-ulike-nonce=\"d9b041f63c\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_63\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/chartered-architect/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1364-connor-wang-MNz7IGrcEl0-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/chartered-architect/\">\n                                            Chartered architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"65\"\n					data-ulike-nonce=\"8127611f34\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_65\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/landscape-architect/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/landscape-architect/\">\n                                            Landscape architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"66\"\n					data-ulike-nonce=\"10ea7ac9ad\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_66\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/list-of-architects/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1366-tyler-schaefer-bODOLilbwJs-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/list-of-architects/\">\n                                            List of architects                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"67\"\n					data-ulike-nonce=\"ce39d2e512\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_67\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architect-like/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1358-volkan-vardar-y7RW7g2izy0-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architect-like/\">\n                                            Architect like                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"68\"\n					data-ulike-nonce=\"70f3f94b3a\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_68\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-11 12:26:23','2022-03-11 12:26:23','',71,'http://demoweblinks.in/naishautomation/?p=111',0,'revision','',0),(112,1,'2022-03-11 12:28:16','2022-03-11 12:28:16','','Recent Portfolio – Grid 8','','publish','closed','closed','','recent-portfolio-grid-8','','','2022-03-11 12:28:16','2022-03-11 12:28:16','',0,'http://demoweblinks.in/naishautomation/?elementor_library=recent-portfolio-grid-8',0,'elementor_library','',0),(114,1,'2022-03-11 12:28:27','2022-03-11 12:28:27','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-phlox-pro','','','2022-03-11 12:28:27','2022-03-11 12:28:27','',0,'http://demoweblinks.in/naishautomation/2022/03/11/wp-global-styles-phlox-pro/',0,'wp_global_styles','',0),(115,1,'2022-03-11 12:35:25','2022-03-11 12:35:25','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 12:35:25','2022-03-11 12:35:25','',74,'http://demoweblinks.in/naishautomation/?p=115',0,'revision','',0),(116,1,'2022-03-11 12:35:26','2022-03-11 12:35:26','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\" />                                                    \n                                <h4>100%</h4>\n                                        <p>Satisfaction</p><p>Customer</p>                \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><h3>Shaping The Future.</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section>\n            <h5>Our services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\" />            \n</section><!-- widget-container -->		\n                    <a>\nVeiw all services                \n            </a>\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,607px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 12:35:26','2022-03-11 12:35:26','',74,'http://demoweblinks.in/naishautomation/?p=116',0,'revision','',0),(117,1,'2022-03-11 12:35:26','2022-03-11 12:35:26','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 12:35:26','2022-03-11 12:35:26','',74,'http://demoweblinks.in/naishautomation/?p=117',0,'revision','',0),(118,1,'2022-03-11 12:38:31','2022-03-11 12:38:31','','Counter 10','','publish','closed','closed','','counter-10','','','2022-03-11 12:38:31','2022-03-11 12:38:31','',0,'http://demoweblinks.in/naishautomation/?elementor_library=counter-10',0,'elementor_library','',0),(120,1,'2022-03-11 12:45:15','2022-03-11 12:45:15','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 12:45:15','2022-03-11 12:45:15','',74,'http://demoweblinks.in/naishautomation/?p=120',0,'revision','',0),(121,1,'2022-03-11 12:45:15','2022-03-11 12:45:15','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 12:45:15','2022-03-11 12:45:15','',74,'http://demoweblinks.in/naishautomation/?p=121',0,'revision','',0),(122,1,'2022-03-11 12:45:16','2022-03-11 12:45:16','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 12:45:16','2022-03-11 12:45:16','',74,'http://demoweblinks.in/naishautomation/?p=122',0,'revision','',0),(123,1,'2022-03-11 12:45:25','2022-03-11 12:45:25','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 12:45:25','2022-03-11 12:45:25','',74,'http://demoweblinks.in/naishautomation/?p=123',0,'revision','',0),(124,1,'2022-03-11 12:45:26','2022-03-11 12:45:26','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 12:45:26','2022-03-11 12:45:26','',74,'http://demoweblinks.in/naishautomation/?p=124',0,'revision','',0),(125,1,'2022-03-11 12:45:26','2022-03-11 12:45:26','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 12:45:26','2022-03-11 12:45:26','',74,'http://demoweblinks.in/naishautomation/?p=125',0,'revision','',0),(126,1,'2022-03-11 12:51:13','2022-03-11 12:51:13','<section>\n<h2>living space.</h2>\n</section>\n<section>\n<h2></h2>\n<h2>One Stop For\nAutomation.</h2>\n</section>\n<section style=\"\">\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\">\n</section><!-- widget-container -->\n\n<section>\n<h2></h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section style=\"\">\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n<ul>\n 	<li>2021</li>\n 	<li><a href=\"#\">TW</a></li>\n 	<li><a href=\"#\">IG</a></li>\n 	<li><a href=\"#\">FB</a></li>\n 	<li><a href=\"#\">LN</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section>\n<h5>About us</h5>\n<h3>We turn ideas into works of automation</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section style=\"\">\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n<ul>\n 	<li>Beautiful Interior</li>\n 	<li><a href=\"#\">Watch Video</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section>\n<h2>Our procces</h2>\n</section>\n<section>\n<h2>ARchitect</h2>\n</section>\n<section>\n<h5></h5>\n<h3>Why Choose and Trust Us</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>\n<section style=\"\">\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\">\n</section><!-- widget-container -->\n\n<section>\n<h2>01</h2>\n</section>\n<section>\n<h2>10 years exprience</h2>\nA wonderful serenity has taken\n\n</section>\n<section>\n<h2>02</h2>\n</section>\n<section>\n<h2>best team in automation</h2>\nentire soul, like these sweet\n\n</section>\n<section>\n<h2>03</h2>\n</section>\n<section>\n<h2>design perfect solutions</h2>\npossession of my entire soul, like these sweet\n\n</section>\n<section style=\"\">\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\">\n</section><!-- widget-container -->\n\n<section>\n<h2>Strategy Planning</h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>\n<section>\n<h5>Products</h5>\n<h3>Best and stand out amongst peers</h3>\n</section>\n<section style=\"\">\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\nDesign role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\nMeans of design                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\nEnvironmental role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\nConstruction role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\nLighting Design                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\nAlternate practice                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n</section><!-- widget-container -->\n<a>\nView All Products\n</a>\n\n<section>\n<h5>Testimonial</h5>\n<h3>Our Client say.</h3>\nA wonderful serenity has taken possession of my entire soul, like these.\n\n</section>\n<section style=\"\">\n<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"c5eac7f\" data-element_type=\"section\">\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n</section>\n<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n</section><!-- widget-container -->\n\n<section>\n<h2>Portfolio Gallery .</h2>\n</section>			<a href=\"#\" role=\"button\">\nView All\n</a>\n\n<section style=\"\">\n<ul>\n 	<li data-filter=\"outdoor-design\" data-category-id=\"7\"><a href=\"#\">Outdoor Design</a></li>\n</ul>\n<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>\n\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\nDesign role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\nMeans of design                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\nEnvironmental role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\nConstruction role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\nLighting Design                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n</section><!-- widget-container -->\n\n<section>\n<h2>specialization</h2>\n</section>				0\nProducts\n0\nHappy Clients\n0\nClients\n0\nProject Launched\n\n<section style=\"\">\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\">\n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-11 12:51:13','2022-03-11 12:51:13','',74,'http://demoweblinks.in/naishautomation/?p=126',0,'revision','',0),(127,1,'2022-03-11 12:59:13','0000-00-00 00:00:00','<section>\n<h2>living space.</h2>\n</section>\n<section>\n<h2></h2>\n<h2>Architecture and Decor.</h2>\n</section>\n<section style=\"\">\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\">\n</section><!-- widget-container -->\n\n<section>\n<h2></h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section style=\"\">\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n<ul>\n 	<li>2021</li>\n 	<li><a href=\"#\">TW</a></li>\n 	<li><a href=\"#\">IG</a></li>\n 	<li><a href=\"#\">FB</a></li>\n 	<li><a href=\"#\">LN</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section>\n<h5>About us</h5>\n<h3>We turn ideas into works of art</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section style=\"\">\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n<ul>\n 	<li>Beautiful Interior</li>\n 	<li><a href=\"#\">Watch Video</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section>\n<h2>Our procces</h2>\n</section>\n<section style=\"\">\n            <img width=\"754\" height=\"985\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.png\" alt=\"demo-attachment-289-sunyu-kim-q1rwmAmRSBM-unsplash\" data-ratio=\"0.77\" data-original-w=\"754\">\n</section><!-- widget-container -->\n\n<section>\n<h5></h5>\n<h3>Let Your Home Be UniqueStylish.</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio\n\n</section>\n<section>\n<h2>01</h2>\n<h3>Client Needs</h3>\nA wonderful serenity has taken possession of my entire...\n\n</section>\n<section>\n<h2>02</h2>\n<h3>Planning Design</h3>\nA wonderful serenity has taken possession of my entire...\n\n</section>\n<section>\n<h2>03</h2>\n<h3>Architect Sketch</h3>\nA wonderful serenity has taken possession of my entire...\n\n</section>\n<section>\n<h5>Projects</h5>\n<h3>Best and stand out amongst peers</h3>\n</section>\n<section style=\"\">\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"473\" height=\"566\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-473x567.png 473w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-473x567.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\nDesign role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"473\" height=\"566\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-473x567.png 473w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-473x567.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\nMeans of design                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"473\" height=\"566\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-473x567.png 473w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-473x567.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\nEnvironmental role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"473\" height=\"566\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-473x567.png 473w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-473x567.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\nConstruction role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"473\" height=\"566\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-473x567.png 473w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-473x567.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\nLighting Design                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"473\" height=\"566\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-473x567.png 473w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-473x567.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\nAlternate practice                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n</section><!-- widget-container -->\n<a>\nView All Project\n</a>\n\n<section>\n<h5>Testimonial</h5>\n<h3>Our Client say.</h3>\nA wonderful serenity has taken possession of my entire soul, like these.\n\n</section>\n<section style=\"\">\n<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"c5eac7f\" data-element_type=\"section\">\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n</section>\n<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n</section><!-- widget-container -->\n\n<section>\n<h2>specialization</h2>\n</section>\n<section style=\"\">\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\">\n<h4>100%</h4>\nSatisfaction\n\nCustomer\n\n</section><!-- widget-container -->\n\n<section>\n<h2></h2>\n<h3>Shaping The Future.</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section>\n<h5>Our services</h5>\n<h3>We are innovative</h3>\n</section>\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Furniture &amp; Accessories</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Construction</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Architecture</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>3D Animation</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\">\n</section><!-- widget-container -->\n<a>\nVeiw all services\n</a>\n\n<section style=\"\">\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\">\n</section><!-- widget-container -->\n\n<section>\n<h2>Portfolio Gallery .</h2>\n</section>			<a href=\"#\" role=\"button\">\nView All\n</a>\n\n<section style=\"\">\n<ul>\n 	<li data-filter=\"outdoor-design\" data-category-id=\"7\"><a href=\"#\">Outdoor Design</a></li>\n</ul>\n<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>\n\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"320\" height=\"425\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-320x426.png 320w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-320x426.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\nDesign role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"320\" height=\"425\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-320x426.png 320w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-320x426.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\nMeans of design                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"320\" height=\"425\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-320x426.png 320w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-320x426.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\nEnvironmental role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"320\" height=\"425\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-320x426.png 320w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-320x426.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\nConstruction role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"320\" height=\"425\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-320x426.png 320w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-320x426.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\nLighting Design                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n</section><!-- widget-container -->','Naish Home','','draft','closed','closed','','','','','2022-03-11 12:59:13','2022-03-11 12:59:13','',0,'http://demoweblinks.in/naishautomation/?page_id=127',0,'page','',0),(128,1,'2022-03-11 12:53:10','2022-03-11 12:53:10','','Naish Home','','inherit','closed','closed','','127-revision-v1','','','2022-03-11 12:53:10','2022-03-11 12:53:10','',127,'http://demoweblinks.in/naishautomation/?p=128',0,'revision','',0),(129,1,'2022-03-11 12:55:51','2022-03-11 12:55:51','','Header-Creative Corporate','','publish','closed','closed','','header-creative-corporate','','','2022-03-11 12:55:51','2022-03-11 12:55:51','',0,'http://demoweblinks.in/naishautomation/?elementor_library=header-creative-corporate',0,'elementor_library','',0),(131,1,'2022-03-11 12:59:06','2022-03-11 12:59:06','<section>\n<h2>living space.</h2>\n</section>\n<section>\n<h2></h2>\n<h2>Architecture and Decor.</h2>\n</section>\n<section style=\"\">\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\">\n</section><!-- widget-container -->\n\n<section>\n<h2></h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section style=\"\">\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n<ul>\n 	<li>2021</li>\n 	<li><a href=\"#\">TW</a></li>\n 	<li><a href=\"#\">IG</a></li>\n 	<li><a href=\"#\">FB</a></li>\n 	<li><a href=\"#\">LN</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section>\n<h5>About us</h5>\n<h3>We turn ideas into works of art</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section style=\"\">\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n<ul>\n 	<li>Beautiful Interior</li>\n 	<li><a href=\"#\">Watch Video</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section>\n<h2>Our procces</h2>\n</section>\n<section style=\"\">\n            <img width=\"754\" height=\"985\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sunyu-kim-q1rwmAmRSBM-unsplash.png\" alt=\"demo-attachment-289-sunyu-kim-q1rwmAmRSBM-unsplash\" data-ratio=\"0.77\" data-original-w=\"754\">\n</section><!-- widget-container -->\n\n<section>\n<h5></h5>\n<h3>Let Your Home Be UniqueStylish.</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio\n\n</section>\n<section>\n<h2>01</h2>\n<h3>Client Needs</h3>\nA wonderful serenity has taken possession of my entire...\n\n</section>\n<section>\n<h2>02</h2>\n<h3>Planning Design</h3>\nA wonderful serenity has taken possession of my entire...\n\n</section>\n<section>\n<h2>03</h2>\n<h3>Architect Sketch</h3>\nA wonderful serenity has taken possession of my entire...\n\n</section>\n<section>\n<h5>Projects</h5>\n<h3>Best and stand out amongst peers</h3>\n</section>\n<section style=\"\">\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"473\" height=\"566\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-473x567.png 473w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-473x567.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\nDesign role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"473\" height=\"566\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-473x567.png 473w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-473x567.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\nMeans of design                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"473\" height=\"566\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-473x567.png 473w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-473x567.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\nEnvironmental role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"473\" height=\"566\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-473x567.png 473w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-473x567.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\nConstruction role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"473\" height=\"566\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-473x567.png 473w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-473x567.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\nLighting Design                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"473\" height=\"566\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-473x567.png 473w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-473x567.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\nAlternate practice                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n</section><!-- widget-container -->\n<a>\nView All Project\n</a>\n\n<section>\n<h5>Testimonial</h5>\n<h3>Our Client say.</h3>\nA wonderful serenity has taken possession of my entire soul, like these.\n\n</section>\n<section style=\"\">\n<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"c5eac7f\" data-element_type=\"section\">\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n</section>\n<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n</section><!-- widget-container -->\n\n<section>\n<h2>specialization</h2>\n</section>\n<section style=\"\">\n            <img width=\"708\" height=\"710\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/sean-pollock-PhYq704ffdA-unsplash.png\" alt=\"demo-attachment-461-sean-pollock-PhYq704ffdA-unsplash\" data-ratio=\"1\" data-original-w=\"708\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <img width=\"93\" height=\"95\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/11/Group_88.png\" alt=\"demo-attachment-1199-Group_88\" data-ratio=\"0.98\" data-original-w=\"93\">\n<h4>100%</h4>\nSatisfaction\n\nCustomer\n\n</section><!-- widget-container -->\n\n<section>\n<h2></h2>\n<h3>Shaping The Future.</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession heart.\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section>\n<h5>Our services</h5>\n<h3>We are innovative</h3>\n</section>\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Furniture &amp; Accessories</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Construction</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Architecture</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>3D Animation</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"495\" height=\"813\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-486-ricardo-gomez-ansswwg22el-U_riwEM5piM-unsplash\" data-ratio=\"0.61\" data-original-w=\"495\">\n</section><!-- widget-container -->\n<a>\nVeiw all services\n</a>\n\n<section style=\"\">\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\">\n</section><!-- widget-container -->\n\n<section>\n<h2>Portfolio Gallery .</h2>\n</section>			<a href=\"#\" role=\"button\">\nView All\n</a>\n\n<section style=\"\">\n<ul>\n 	<li data-filter=\"outdoor-design\" data-category-id=\"7\"><a href=\"#\">Outdoor Design</a></li>\n</ul>\n<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>\n\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"320\" height=\"425\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-320x426.png 320w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-320x426.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\nDesign role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"320\" height=\"425\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-320x426.png 320w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-320x426.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\nMeans of design                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"320\" height=\"425\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-320x426.png 320w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-320x426.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\nEnvironmental role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"320\" height=\"425\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-320x426.png 320w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-320x426.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\nConstruction role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"320\" height=\"425\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-320x426.png 320w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-320x426.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\nLighting Design                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n</section><!-- widget-container -->','Naish Home','','inherit','closed','closed','','127-revision-v1','','','2022-03-11 12:59:06','2022-03-11 12:59:06','',127,'http://demoweblinks.in/naishautomation/?p=131',0,'revision','',0),(132,1,'2022-03-11 12:59:49','2022-03-11 12:59:49','','Header – Photography Studio','','publish','closed','closed','','header-photography-studio','','','2022-03-11 12:59:49','2022-03-11 12:59:49','',0,'http://demoweblinks.in/naishautomation/?elementor_library=header-photography-studio',0,'elementor_library','',0),(133,1,'2022-03-11 13:14:55','2022-03-11 13:14:55','','Default Kit','','inherit','closed','closed','','75-revision-v1','','','2022-03-11 13:14:55','2022-03-11 13:14:55','',75,'http://demoweblinks.in/naishautomation/?p=133',0,'revision','',0),(134,1,'2022-03-11 13:17:02','2022-03-11 13:17:02','','Header - Modern Portfolio','','publish','closed','closed','','header-modern-portfolio','','','2022-03-11 13:17:02','2022-03-11 13:17:02','',0,'http://demoweblinks.in/naishautomation/?elementor_library=header-modern-portfolio',0,'elementor_library','',0);
INSERT INTO `wp_posts` VALUES (138,1,'2022-03-14 06:10:52','2022-03-14 06:10:52','<section>\n<h2>living space.</h2>\n</section>\n<section>\n<h2></h2>\n<h2>One Stop For\nAutomation.</h2>\n</section>\n<section style=\"\">\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\">\n</section><!-- widget-container -->\n\n<section>\n<h2></h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section style=\"\">\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n<ul>\n 	<li>2021</li>\n 	<li><a href=\"#\">TW</a></li>\n 	<li><a href=\"#\">IG</a></li>\n 	<li><a href=\"#\">FB</a></li>\n 	<li><a href=\"#\">LN</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section>\n<h5>About us</h5>\n<h3>We turn ideas into works of automation</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section style=\"\">\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n<ul>\n 	<li>Beautiful Interior</li>\n 	<li><a href=\"#\">Watch Video</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section>\n<h2>Our procces</h2>\n</section>\n<section>\n<h2>ARchitect</h2>\n</section>\n<section>\n<h5></h5>\n<h3>Why Choose and Trust Us</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>\n<section style=\"\">\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\">\n</section><!-- widget-container -->\n\n<section>\n<h2>01</h2>\n</section>\n<section>\n<h2>10 years exprience</h2>\nA wonderful serenity has taken\n\n</section>\n<section>\n<h2>02</h2>\n</section>\n<section>\n<h2>best team in automation</h2>\nentire soul, like these sweet\n\n</section>\n<section>\n<h2>03</h2>\n</section>\n<section>\n<h2>design perfect solutions</h2>\npossession of my entire soul, like these sweet\n\n</section>\n<section style=\"\">\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\">\n</section><!-- widget-container -->\n\n<section>\n<h2>Strategy Planning</h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>\n<section>\n<h5>Products</h5>\n<h3>Best and stand out amongst peers</h3>\n</section>\n<section style=\"\">\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\nDesign role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\nMeans of design                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\nEnvironmental role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\nConstruction role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\nLighting Design                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\nAlternate practice                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n</section><!-- widget-container -->\n<a>\nView All Products\n</a>\n\n<section>\n<h5>Testimonial</h5>\n<h3>Our Client say.</h3>\nA wonderful serenity has taken possession of my entire soul, like these.\n\n</section>\n<section style=\"\">\n<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"c5eac7f\" data-element_type=\"section\">\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n</section>\n<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n</section><!-- widget-container -->\n\n<section>\n<h2>Portfolio Gallery .</h2>\n</section>			<a href=\"#\" role=\"button\">\nView All\n</a>\n\n<section style=\"\">\n<ul>\n 	<li data-filter=\"outdoor-design\" data-category-id=\"7\"><a href=\"#\">Outdoor Design</a></li>\n</ul>\n<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>\n\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\nDesign role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\nMeans of design                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\nEnvironmental role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\nConstruction role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\nLighting Design                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n</section><!-- widget-container -->\n\n<section>\n<h2>specialization</h2>\n</section>				0\nProducts\n0\nHappy Clients\n0\nClients\n0\nProject Launched\n\n<section style=\"\">\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\">\n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:10:52','2022-03-14 06:10:52','',74,'http://demoweblinks.in/naishautomation/?p=138',0,'revision','',0),(139,1,'2022-03-14 06:10:52','2022-03-14 06:10:52','<section>\n<h2>living space.</h2>\n</section>\n<section>\n<h2></h2>\n<h2>One Stop For\nAutomation.</h2>\n</section>\n<section style=\"\">\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\">\n</section><!-- widget-container -->\n\n<section>\n<h2></h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section style=\"\">\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n<ul>\n 	<li>2021</li>\n 	<li><a href=\"#\">TW</a></li>\n 	<li><a href=\"#\">IG</a></li>\n 	<li><a href=\"#\">FB</a></li>\n 	<li><a href=\"#\">LN</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section>\n<h5>About us</h5>\n<h3>We turn ideas into works of automation</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section style=\"\">\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n<ul>\n 	<li>Beautiful Interior</li>\n 	<li><a href=\"#\">Watch Video</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section>\n<h2>Our procces</h2>\n</section>\n<section>\n<h2>ARchitect</h2>\n</section>\n<section>\n<h5></h5>\n<h3>Why Choose and Trust Us</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>\n<section style=\"\">\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\">\n</section><!-- widget-container -->\n\n<section>\n<h2>01</h2>\n</section>\n<section>\n<h2>10 years exprience</h2>\nA wonderful serenity has taken\n\n</section>\n<section>\n<h2>02</h2>\n</section>\n<section>\n<h2>best team in automation</h2>\nentire soul, like these sweet\n\n</section>\n<section>\n<h2>03</h2>\n</section>\n<section>\n<h2>design perfect solutions</h2>\npossession of my entire soul, like these sweet\n\n</section>\n<section style=\"\">\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\">\n</section><!-- widget-container -->\n\n<section>\n<h2>Strategy Planning</h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>\n<section>\n<h5>Products</h5>\n<h3>Best and stand out amongst peers</h3>\n</section>\n<section style=\"\">\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\nDesign role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\nMeans of design                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\nEnvironmental role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\nConstruction role                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\nLighting Design                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\"></a>\n\n<header>\n<h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\nAlternate practice                                        </a></h3>\n</header>                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n</section><!-- widget-container -->\n<a>\nView All Products\n</a>\n\n<section>\n<h5>Testimonial</h5>\n<h3>Our Client say.</h3>\nA wonderful serenity has taken possession of my entire soul, like these.\n\n</section>\n<section style=\"\">\n<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"c5eac7f\" data-element_type=\"section\">\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n</section>\n<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{<br />\n    display: none;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{<br />\n    margin: 0 auto;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{<br />\n    width: 80px;<br />\n}<br />\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{<br />\n    text-align: left;<br />\n}/* End custom CSS */</style>\n<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"></path>\n</svg>\n\n<section style=\"\">\n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken\n<img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\">\n<h4>alex Janson</h4>\n<h5>Designer</h5>\n</section><!-- widget-container -->\n</section>\n</section><!-- widget-container -->\n\n<section>\n<h2>Portfolio Gallery .</h2>\n</section>			<a href=\"#\" role=\"button\">\nView All\n</a>\n\n<section style=\"\">\n<ul>\n 	<li data-filter=\"outdoor-design\" data-category-id=\"7\"><a href=\"#\">Outdoor Design</a></li>\n</ul>\n<svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>\n\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\nDesign role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\nMeans of design                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\nEnvironmental role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\nConstruction role                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n<article>\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\"></a>\n<a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox=\"no\" data-original-width=\"1100\" data-original-height=\"1283\" data-caption=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\">\n</a>\n<a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n</a>\n\n<header>\n<h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\nLighting Design                                            </a></h3>\n</header>                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\">Outdoor Design</a>\n</article>\n</section><!-- widget-container -->\n\n<section>\n<h2>specialization</h2>\n</section>				0\nProducts\n0\nHappy Clients\n0\nClients\n0\nProject Launched\n\n<section style=\"\">\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\">\n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:10:52','2022-03-14 06:10:52','',74,'http://demoweblinks.in/naishautomation/?p=139',0,'revision','',0),(140,1,'2022-03-14 06:10:54','2022-03-14 06:10:54','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:10:54','2022-03-14 06:10:54','',74,'http://demoweblinks.in/naishautomation/?p=140',0,'revision','',0),(141,1,'2022-03-14 06:11:27','2022-03-14 06:11:27','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:11:27','2022-03-14 06:11:27','',74,'http://demoweblinks.in/naishautomation/?p=141',0,'revision','',0),(142,1,'2022-03-14 06:11:27','2022-03-14 06:11:27','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:11:27','2022-03-14 06:11:27','',74,'http://demoweblinks.in/naishautomation/?p=142',0,'revision','',0),(143,1,'2022-03-14 06:11:28','2022-03-14 06:11:28','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:11:28','2022-03-14 06:11:28','',74,'http://demoweblinks.in/naishautomation/?p=143',0,'revision','',0),(144,1,'2022-03-14 06:13:46','2022-03-14 06:13:46','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:13:46','2022-03-14 06:13:46','',74,'http://demoweblinks.in/naishautomation/?p=144',0,'revision','',0),(145,1,'2022-03-14 06:13:46','2022-03-14 06:13:46','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:13:46','2022-03-14 06:13:46','',74,'http://demoweblinks.in/naishautomation/?p=145',0,'revision','',0),(146,1,'2022-03-14 06:13:47','2022-03-14 06:13:47','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:13:47','2022-03-14 06:13:47','',74,'http://demoweblinks.in/naishautomation/?p=146',0,'revision','',0),(147,1,'2022-03-14 06:14:15','2022-03-14 06:14:15','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:14:15','2022-03-14 06:14:15','',74,'http://demoweblinks.in/naishautomation/?p=147',0,'revision','',0),(148,1,'2022-03-14 06:14:15','2022-03-14 06:14:15','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Interior</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:14:15','2022-03-14 06:14:15','',74,'http://demoweblinks.in/naishautomation/?p=148',0,'revision','',0),(149,1,'2022-03-14 06:14:16','2022-03-14 06:14:16','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:14:16','2022-03-14 06:14:16','',74,'http://demoweblinks.in/naishautomation/?p=149',0,'revision','',0),(150,1,'2022-03-14 06:15:49','2022-03-14 06:15:49','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:15:49','2022-03-14 06:15:49','',74,'http://demoweblinks.in/naishautomation/?p=150',0,'revision','',0),(151,1,'2022-03-14 06:15:50','2022-03-14 06:15:50','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:15:50','2022-03-14 06:15:50','',74,'http://demoweblinks.in/naishautomation/?p=151',0,'revision','',0),(152,1,'2022-03-14 06:15:51','2022-03-14 06:15:51','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:15:51','2022-03-14 06:15:51','',74,'http://demoweblinks.in/naishautomation/?p=152',0,'revision','',0),(153,1,'2022-03-14 06:17:08','2022-03-14 06:17:08','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:17:08','2022-03-14 06:17:08','',74,'http://demoweblinks.in/naishautomation/?p=153',0,'revision','',0),(154,1,'2022-03-14 06:17:08','2022-03-14 06:17:08','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:17:08','2022-03-14 06:17:08','',74,'http://demoweblinks.in/naishautomation/?p=154',0,'revision','',0),(155,1,'2022-03-14 06:17:10','2022-03-14 06:17:10','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:17:10','2022-03-14 06:17:10','',74,'http://demoweblinks.in/naishautomation/?p=155',0,'revision','',0),(156,1,'2022-03-14 06:18:20','2022-03-14 06:18:20','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:18:20','2022-03-14 06:18:20','',74,'http://demoweblinks.in/naishautomation/?p=156',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (157,1,'2022-03-14 06:18:20','2022-03-14 06:18:20','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:18:20','2022-03-14 06:18:20','',74,'http://demoweblinks.in/naishautomation/?p=157',0,'revision','',0),(158,1,'2022-03-14 06:18:21','2022-03-14 06:18:21','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:18:21','2022-03-14 06:18:21','',74,'http://demoweblinks.in/naishautomation/?p=158',0,'revision','',0),(159,1,'2022-03-14 06:20:07','2022-03-14 06:20:07','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:20:07','2022-03-14 06:20:07','',74,'http://demoweblinks.in/naishautomation/?p=159',0,'revision','',0),(160,1,'2022-03-14 06:20:07','2022-03-14 06:20:07','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:20:07','2022-03-14 06:20:07','',74,'http://demoweblinks.in/naishautomation/?p=160',0,'revision','',0),(161,1,'2022-03-14 06:20:08','2022-03-14 06:20:08','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:20:08','2022-03-14 06:20:08','',74,'http://demoweblinks.in/naishautomation/?p=161',0,'revision','',0),(162,1,'2022-03-14 06:22:34','2022-03-14 06:22:34','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:22:34','2022-03-14 06:22:34','',74,'http://demoweblinks.in/naishautomation/?p=162',0,'revision','',0),(163,1,'2022-03-14 06:22:34','2022-03-14 06:22:34','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:22:34','2022-03-14 06:22:34','',74,'http://demoweblinks.in/naishautomation/?p=163',0,'revision','',0),(164,1,'2022-03-14 06:22:35','2022-03-14 06:22:35','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:22:35','2022-03-14 06:22:35','',74,'http://demoweblinks.in/naishautomation/?p=164',0,'revision','',0),(165,1,'2022-03-14 06:23:20','2022-03-14 06:23:20','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:23:20','2022-03-14 06:23:20','',74,'http://demoweblinks.in/naishautomation/?p=165',0,'revision','',0),(166,1,'2022-03-14 06:23:21','2022-03-14 06:23:21','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n			<section>\n            <h2>specialization</h2>\n        </section>		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:23:21','2022-03-14 06:23:21','',74,'http://demoweblinks.in/naishautomation/?p=166',0,'revision','',0),(167,1,'2022-03-14 06:23:23','2022-03-14 06:23:23','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 06:23:23','2022-03-14 06:23:23','',74,'http://demoweblinks.in/naishautomation/?p=167',0,'revision','',0),(173,1,'2022-03-14 06:36:30','2022-03-14 06:36:30','<section>\n            <h2>Lets Talk About Your Project.</h2>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Phone:</h2><p>+123 4567 890</p>\n        </section>		\n			<section>\n            <h2>Address:</h2><p>Patricia C. Amedee 41 WaldeckGrapevine Nashville, TX 76</p>\n        </section>		\n			<section>\n            <h2>Email:</h2><p>info@yourdomain.com</p>\n        </section>		\n			<section>\n            <h2>Social:</h2>\n        </section>		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >face book -</a></li><li ><a href=\"#\" >youtube -</a></li><li ><a href=\"#\" >instagram </a></li><li ><a href=\"#\" >twitter -</a></li><li ><a href=\"#\" >behance</a></li></ul></section><!-- widget-container -->		\n			<a title=\"Architect Pro &#8211; Phlox Elementor WordPress Theme\" href=\"https://demo.phlox.pro/portfolio-architect/\"  ><img width=\"177\" height=\"57\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Group-110.png\" alt=\"Group 110\" data-ratio=\"3.11\" data-original-w=\"177\" /></a><a title=\"Architect Pro &#8211; Phlox Elementor WordPress Theme\" href=\"https://demo.phlox.pro/portfolio-architect/\"  ><img width=\"177\" height=\"57\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Group-110.png\" alt=\"Group 110\" data-ratio=\"3.11\" data-original-w=\"177\" /></a><section><h3><a href=\"https://demo.phlox.pro/portfolio-architect/\" title=\"Architect Pro &#8211; Phlox Elementor WordPress Theme \">Architect Pro - Phlox Elementor WordPress Theme </a></h3><p>Just another Phlox Demos Sites site</p></section>		\n			<small>&copy; 2021 PhLOX THEME.</small>','Site Footer','','inherit','closed','closed','','69-revision-v1','','','2022-03-14 06:36:30','2022-03-14 06:36:30','',69,'http://demoweblinks.in/naishautomation/?p=173',0,'revision','',0),(174,1,'2022-03-14 06:36:30','2022-03-14 06:36:30','<section>\n            <h2>Lets Talk About Your Project.</h2>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Phone:</h2><p>+123 4567 890</p>\n        </section>		\n			<section>\n            <h2>Address:</h2><p>Address 123 line 2</p>\n        </section>		\n			<section>\n            <h2>Email:</h2><p>info@yourdomain.com</p>\n        </section>		\n			<section>\n            <h2>Social:</h2>\n        </section>		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >face book -</a></li><li ><a href=\"#\" >youtube -</a></li><li ><a href=\"#\" >instagram </a></li><li ><a href=\"#\" >twitter -</a></li><li ><a href=\"#\" >behance</a></li></ul></section><!-- widget-container -->		\n			<a title=\"Naish Automation\" href=\"http://demoweblinks.in/naishautomation/\"  ><img width=\"177\" height=\"57\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Group-110.png\" alt=\"demo-attachment-20-Group-110\" data-ratio=\"3.11\" data-original-w=\"177\" /></a><a title=\"Naish Automation\" href=\"http://demoweblinks.in/naishautomation/\"  ><img width=\"177\" height=\"57\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Group-110.png\" alt=\"demo-attachment-20-Group-110\" data-ratio=\"3.11\" data-original-w=\"177\" /></a><section><h3><a href=\"http://demoweblinks.in/naishautomation/\" title=\"Naish Automation\">Naish Automation</a></h3><p>Just another WordPress site</p></section>		\n			<small>&copy; 2022 Amaeka Technologies</small>','Site Footer','','inherit','closed','closed','','69-revision-v1','','','2022-03-14 06:36:30','2022-03-14 06:36:30','',69,'http://demoweblinks.in/naishautomation/?p=174',0,'revision','',0),(175,1,'2022-03-14 06:38:27','2022-03-14 06:38:27','<section>\n            <h2>Lets Talk About Your Project.</h2>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Phone:</h2><p>+123 4567 890</p>\n        </section>		\n			<section>\n            <h2>Address:</h2><p>Address 123 line 2</p>\n        </section>		\n			<section>\n            <h2>Email:</h2><p>info@yourdomain.com</p>\n        </section>		\n			<section>\n            <h2>Social:</h2>\n        </section>		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >face book -</a></li><li ><a href=\"#\" >youtube -</a></li><li ><a href=\"#\" >instagram </a></li><li ><a href=\"#\" >twitter -</a></li><li ><a href=\"#\" >behance</a></li></ul></section><!-- widget-container -->		\n			<a title=\"Naish Automation\" href=\"http://demoweblinks.in/naishautomation/\"  ><img width=\"177\" height=\"57\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Group-110.png\" alt=\"demo-attachment-20-Group-110\" data-ratio=\"3.11\" data-original-w=\"177\" /></a><a title=\"Naish Automation\" href=\"http://demoweblinks.in/naishautomation/\"  ><img width=\"177\" height=\"57\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Group-110.png\" alt=\"demo-attachment-20-Group-110\" data-ratio=\"3.11\" data-original-w=\"177\" /></a><section><h3><a href=\"http://demoweblinks.in/naishautomation/\" title=\"Naish Automation\">Naish Automation</a></h3><p>Just another WordPress site</p></section>		\n			<small>&copy; 2022 Amaeka Technologies</small>','Site Footer','','inherit','closed','closed','','69-revision-v1','','','2022-03-14 06:38:27','2022-03-14 06:38:27','',69,'http://demoweblinks.in/naishautomation/?p=175',0,'revision','',0),(176,1,'2022-03-14 06:40:01','2022-03-14 06:40:01','<section>\n            <h2>Lets Talk About Your Project.</h2>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Phone:</h2><p>+123 4567 890</p>\n        </section>		\n			<section>\n            <h2>Address:</h2><p>Address 123 line 2</p>\n        </section>		\n			<section>\n            <h2>Email:</h2><p>info@yourdomain.com</p>\n        </section>		\n			<section>\n            <h2>Social:</h2>\n        </section>		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >face book -</a></li><li ><a href=\"#\" >youtube -</a></li><li ><a href=\"#\" >instagram </a></li><li ><a href=\"#\" >twitter -</a></li><li ><a href=\"#\" >behance</a></li></ul></section><!-- widget-container -->		\n			<a title=\"Naish Automation\" href=\"http://demoweblinks.in/naishautomation/\"  ><img width=\"177\" height=\"57\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Group-110.png\" alt=\"demo-attachment-20-Group-110\" data-ratio=\"3.11\" data-original-w=\"177\" /></a><a title=\"Naish Automation\" href=\"http://demoweblinks.in/naishautomation/\"  ><img width=\"177\" height=\"57\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Group-110.png\" alt=\"demo-attachment-20-Group-110\" data-ratio=\"3.11\" data-original-w=\"177\" /></a><section><h3><a href=\"http://demoweblinks.in/naishautomation/\" title=\"Naish Automation\">Naish Automation</a></h3><p>Just another WordPress site</p></section>		\n			<small>&copy; 2022 Amaeka Technologies</small>','Site Footer','','inherit','closed','closed','','69-revision-v1','','','2022-03-14 06:40:01','2022-03-14 06:40:01','',69,'http://demoweblinks.in/naishautomation/?p=176',0,'revision','',0),(177,1,'2022-03-14 06:41:36','2022-03-14 06:41:36','<section>\n            <h2>Lets Talk About Your Project.</h2>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Phone:</h2><p>+123 4567 890</p>\n        </section>		\n			<section>\n            <h2>Address:</h2><p>Address 123 line 2</p>\n        </section>		\n			<section>\n            <h2>Email:</h2><p>info@yourdomain.com</p>\n        </section>		\n			<section>\n            <h2>Social:</h2>\n        </section>		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >face book -</a></li><li ><a href=\"#\" >youtube -</a></li><li ><a href=\"#\" >instagram </a></li><li ><a href=\"#\" >twitter -</a></li><li ><a href=\"#\" >behance</a></li></ul></section><!-- widget-container -->		\n			<a title=\"Naish Automation\" href=\"http://demoweblinks.in/naishautomation/\"  ><img width=\"177\" height=\"57\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Group-110.png\" alt=\"demo-attachment-20-Group-110\" data-ratio=\"3.11\" data-original-w=\"177\" /></a><a title=\"Naish Automation\" href=\"http://demoweblinks.in/naishautomation/\"  ><img width=\"177\" height=\"57\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Group-110.png\" alt=\"demo-attachment-20-Group-110\" data-ratio=\"3.11\" data-original-w=\"177\" /></a><section><h3><a href=\"http://demoweblinks.in/naishautomation/\" title=\"Naish Automation\">Naish Automation</a></h3><p>Just another WordPress site</p></section>		\n			<small>&copy; 2022 Amaeka Technologies</small>','Site Footer','','inherit','closed','closed','','69-revision-v1','','','2022-03-14 06:41:36','2022-03-14 06:41:36','',69,'http://demoweblinks.in/naishautomation/?p=177',0,'revision','',0),(179,1,'2022-03-14 06:43:52','2022-03-14 06:43:52','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1518;\n}','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-14 06:43:52','2022-03-14 06:43:52','',54,'http://demoweblinks.in/naishautomation/?p=179',0,'revision','',0),(180,1,'2022-03-14 09:03:33','2022-03-14 09:03:33','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash.jpg\" alt=\"jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"Mask Group 84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.jpg\" alt=\"pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"Mask Group 844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"Full body portrait of professional business woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				+\n				0\n							Complete project\n				0\n				%\n							Satisfy client\n				0\n							Project Launched\n				0\n							Materials\n			<section>\n            <h2>Interior</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/shunya-koide-lnGrGTmftcY-unsplash.jpg\" alt=\"shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 09:03:33','2022-03-14 09:03:33','',73,'http://demoweblinks.in/naishautomation/?p=180',0,'revision','',0),(181,1,'2022-03-14 09:03:33','2022-03-14 09:03:33','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash.jpg\" alt=\"jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"Mask Group 84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.jpg\" alt=\"pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"Mask Group 844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"Full body portrait of professional business woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				+\n				0\n							Complete project\n				0\n				%\n							Satisfy client\n				0\n							Project Launched\n				0\n							Materials\n			<section>\n            <h2>Interior</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/shunya-koide-lnGrGTmftcY-unsplash.jpg\" alt=\"shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 09:03:33','2022-03-14 09:03:33','',73,'http://demoweblinks.in/naishautomation/?p=181',0,'revision','',0),(182,1,'2022-03-14 09:03:33','2022-03-14 09:03:33','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				+\n				0\n							Complete project\n				0\n				%\n							Satisfy client\n				0\n							Project Launched\n				0\n							Materials\n			<section>\n            <h2>Interior</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 09:03:33','2022-03-14 09:03:33','',73,'http://demoweblinks.in/naishautomation/?p=182',0,'revision','',0),(183,1,'2022-03-14 09:07:46','2022-03-14 09:07:46','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				+\n				0\n							Complete project\n				0\n				%\n							Satisfy client\n				0\n							Project Launched\n				0\n							Materials\n			<section>\n            <h2>Interior</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 09:07:46','2022-03-14 09:07:46','',73,'http://demoweblinks.in/naishautomation/?p=183',0,'revision','',0),(184,1,'2022-03-14 09:07:46','2022-03-14 09:07:46','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				+\n				0\n							Complete project\n				0\n				%\n							Satisfy client\n				0\n							Project Launched\n				0\n							Materials\n			<section>\n            <h2>Interior</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 09:07:46','2022-03-14 09:07:46','',73,'http://demoweblinks.in/naishautomation/?p=184',0,'revision','',0),(185,1,'2022-03-14 09:07:46','2022-03-14 09:07:46','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section>\n            <h2>Interior</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 09:07:46','2022-03-14 09:07:46','',73,'http://demoweblinks.in/naishautomation/?p=185',0,'revision','',0),(187,1,'2022-03-14 09:20:51','2022-03-14 09:20:51','<section>\n            <h5>Contact us</h5><h3>Ready to start project let\'s talk</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings.</p>\n        </section>		\n			<section style=\"\" >            \n            <!-- @TODO - The output for element here -->\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/portfolio-architect/wp-admin/admin-ajax.php#wpcf7-f565-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"565\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.3.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f565-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input type=\"text\" name=\"text-289\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" /><br />\n<input type=\"text\" name=\"text-289\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Family*\" /><br />\n<input type=\"text\" name=\"text-289\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject*\" /><br />\n<textarea name=\"textarea-998\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"message*\"></textarea><br />\n<input type=\"submit\" value=\"SEND NOW\" /></p>\n</form>\n            <!-- aux-col-wrapper -->\n    </section><!-- widget-container -->		\n			<section>\n            <h2>Contact</h2>\n        </section>		\n			<section style=\"\" >\n    <!-- aux-col-wrapper -->\n</section><!-- widget-container -->		\n			<section>\n            <h2>Phone:</h2><p>+123 4567 890</p>\n        </section>		\n			<section>\n            <h2>Address:</h2><p>Patricia C. Amedee 41 WaldeckGrapevine Nashville, TX 76</p>\n        </section>		\n			<section>\n            <h2>Email:</h2><p>info@yourdomain.com</p>\n        </section>','Contact','','inherit','closed','closed','','70-revision-v1','','','2022-03-14 09:20:51','2022-03-14 09:20:51','',70,'http://demoweblinks.in/naishautomation/?p=187',0,'revision','',0),(188,1,'2022-03-14 09:20:51','2022-03-14 09:20:51','<section>\n            <h5>Contact us</h5><h3>Ready to start project let\'s talk</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings.</p>\n        </section>		\n			<section style=\"\" >            \n            <!-- @TODO - The output for element here -->\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/portfolio-architect/wp-admin/admin-ajax.php#wpcf7-f565-o3\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"565\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.3.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f565-o3\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input type=\"text\" name=\"text-289\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" /><br />\n<input type=\"text\" name=\"text-289\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Family*\" /><br />\n<input type=\"text\" name=\"text-289\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject*\" /><br />\n<textarea name=\"textarea-998\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"message*\"></textarea><br />\n<input type=\"submit\" value=\"SEND NOW\" /></p>\n</form>\n            <!-- aux-col-wrapper -->\n    </section><!-- widget-container -->		\n			<section>\n            <h2>Contact</h2>\n        </section>		\n			<section style=\"\" >\n    <!-- aux-col-wrapper -->\n</section><!-- widget-container -->		\n			<section>\n            <h2>Phone:</h2><p>+123 4567 890</p>\n        </section>		\n			<section>\n            <h2>Address:</h2><p>Patricia C. Amedee 41 WaldeckGrapevine Nashville, TX 76</p>\n        </section>		\n			<section>\n            <h2>Email:</h2><p>info@yourdomain.com</p>\n        </section>','Contact','','inherit','closed','closed','','70-revision-v1','','','2022-03-14 09:20:51','2022-03-14 09:20:51','',70,'http://demoweblinks.in/naishautomation/?p=188',0,'revision','',0),(189,1,'2022-03-14 09:20:51','2022-03-14 09:20:51','<section>\n            <h5>Contact us</h5><h3>Ready to start project let\'s talk</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings.</p>\n        </section>		\n			<section style=\"\" >            \n            <!-- @TODO - The output for element here -->\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/naishautomation/wp-admin/admin-ajax.php#wpcf7-f64-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"64\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.5.6\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f64-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input type=\"text\" name=\"text-289\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name*\" /><br />\n<input type=\"text\" name=\"text-289\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Family*\" /><br />\n<input type=\"text\" name=\"text-289\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Subject*\" /><br />\n<textarea name=\"textarea-998\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"message*\"></textarea><br />\n<input type=\"submit\" value=\"SEND NOW\" /></p>\n</form>\n            <!-- aux-col-wrapper -->\n    </section><!-- widget-container -->		\n			<section>\n            <h2>Contact</h2>\n        </section>		\n                    Google Maps API Key Is Missing.                \n                    In order to use google maps on your website, you have to create an api key and insert it in customizer &quot;Google Maps API Key&quot; field.                \n			<section>\n            <h2>Phone:</h2><p>+123 4567 890</p>\n        </section>		\n			<section>\n            <h2>Address:</h2><p>Asdress 123,line 2</p>\n        </section>		\n			<section>\n            <h2>Email:</h2><p>info@yourdomain.com</p>\n        </section>','Contact','','inherit','closed','closed','','70-revision-v1','','','2022-03-14 09:20:51','2022-03-14 09:20:51','',70,'http://demoweblinks.in/naishautomation/?p=189',0,'revision','',0),(191,1,'2022-03-14 09:27:17','2022-03-14 09:27:17','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 09:27:17','2022-03-14 09:27:17','',74,'http://demoweblinks.in/naishautomation/?p=191',0,'revision','',0),(192,1,'2022-03-14 09:27:17','2022-03-14 09:27:17','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 09:27:17','2022-03-14 09:27:17','',74,'http://demoweblinks.in/naishautomation/?p=192',0,'revision','',0),(193,1,'2022-03-14 09:27:18','2022-03-14 09:27:18','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 09:27:18','2022-03-14 09:27:18','',74,'http://demoweblinks.in/naishautomation/?p=193',0,'revision','',0),(194,1,'2022-03-14 13:20:57','2022-03-14 13:20:57','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 13:20:57','2022-03-14 13:20:57','',74,'http://demoweblinks.in/naishautomation/?p=194',0,'revision','',0),(195,1,'2022-03-14 13:20:57','2022-03-14 13:20:57','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 13:20:57','2022-03-14 13:20:57','',74,'http://demoweblinks.in/naishautomation/?p=195',0,'revision','',0),(196,1,'2022-03-14 13:20:58','2022-03-14 13:20:58','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-14 13:20:58','2022-03-14 13:20:58','',74,'http://demoweblinks.in/naishautomation/?p=196',0,'revision','',0),(197,1,'2022-03-14 13:24:44','2022-03-14 13:24:44','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section>\n            <h2>Interior</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 13:24:44','2022-03-14 13:24:44','',73,'http://demoweblinks.in/naishautomation/?p=197',0,'revision','',0),(198,1,'2022-03-14 13:24:44','2022-03-14 13:24:44','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section>\n            <h2>Interior</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 13:24:44','2022-03-14 13:24:44','',73,'http://demoweblinks.in/naishautomation/?p=198',0,'revision','',0),(199,1,'2022-03-14 13:24:45','2022-03-14 13:24:45','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section>\n            <h2>Automate</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 13:24:45','2022-03-14 13:24:45','',73,'http://demoweblinks.in/naishautomation/?p=199',0,'revision','',0),(201,1,'2022-03-14 13:27:19','2022-03-14 13:27:19','<section>\n<h5>Welcome</h5>\n<h3>We design &amp; build interiors</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section style=\"\">\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\">\n</section><!-- widget-container -->\n\n<section>\n<h5>Team</h5>\n<h3>Meet our team.</h3>\nA wonderful serenity has taken possession of my entire soul, like these.\n\n</section>\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section>\n<h5>our missions</h5>\n<h3>Learn about our success</h3>\n</section>				0\nProducts\n0\nHappy Customers\n0\nClients\n0\nProjects Launched\n0\nMaterials\n\n<section>\n<h2>Automate</h2>\n</section>\n<section style=\"\">\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n<h4>We Build Value.</h4>\nnnovation is often the ability to reach into the past and bring back what is good\n\n<a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>\n</section><!-- widget-container -->\n\n<section>\n<h2>All Over The World In Architect</h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v\n\n</section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 13:27:19','2022-03-14 13:27:19','',73,'http://demoweblinks.in/naishautomation/?p=201',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (203,1,'2022-03-14 13:28:35','2022-03-14 13:28:35','<section>\n<h5>Welcome</h5>\n<h3>We design &amp; build interiors</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section style=\"\">\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\">\n</section><!-- widget-container -->\n\n<section>\n<h5>Team</h5>\n<h3>Meet our team.</h3>\nA wonderful serenity has taken possession of my entire soul, like these.\n\n</section>\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section>\n<h5>our missions</h5>\n<h3>Learn about our success</h3>\n</section>				0\nProducts\n0\nHappy Customers\n0\nClients\n0\nProjects Launched\n0\nMaterials\n\n<section>\n<h2>Automate</h2>\n</section>\n<section style=\"\">\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n<h4>We Build Value.</h4>\nnnovation is often the ability to reach into the past and bring back what is good\n\n<a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>\n</section><!-- widget-container -->\n\n<section>\n<h2>All Over The World In Architect</h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v\n\n</section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 13:28:35','2022-03-14 13:28:35','',73,'http://demoweblinks.in/naishautomation/?p=203',0,'revision','',0),(204,1,'2022-03-14 13:28:35','2022-03-14 13:28:35','<section>\n<h5>Welcome</h5>\n<h3>We design &amp; build interiors</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>                    <a>\nREAD MORE\n</a>\n\n<section style=\"\">\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\">\n</section><!-- widget-container -->\n\n<section>\n<h5>Team</h5>\n<h3>Meet our team.</h3>\nA wonderful serenity has taken possession of my entire soul, like these.\n\n</section>\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\">\n<h4>Jimmie Benedict</h4>\n<h5>Marketing</h5>\n<ul>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n 	<li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n</a></li>\n</ul>\n</section><!-- widget-container -->\n\n<section>\n<h5>our missions</h5>\n<h3>Learn about our success</h3>\n</section>				0\nProducts\n0\nHappy Customers\n0\nClients\n0\nProjects Launched\n0\nMaterials\n\n<section>\n<h2>Automate</h2>\n</section>\n<section style=\"\">\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\">\n</section><!-- widget-container -->\n\n<section style=\"\">\n<h4>We Build Value.</h4>\nnnovation is often the ability to reach into the past and bring back what is good\n\n<a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>\n</section><!-- widget-container -->\n\n<section>\n<h2>All Over The World In Architect</h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v\n\n</section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 13:28:35','2022-03-14 13:28:35','',73,'http://demoweblinks.in/naishautomation/?p=204',0,'revision','',0),(205,1,'2022-03-14 13:28:35','2022-03-14 13:28:35','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section>\n            <h2>Automate</h2><h3>OverAll</h3>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 13:28:35','2022-03-14 13:28:35','',73,'http://demoweblinks.in/naishautomation/?p=205',0,'revision','',0),(206,1,'2022-03-14 13:33:19','2022-03-14 13:33:19','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section>\n            <h2>Automate</h2><h3>OverAll</h3>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 13:33:19','2022-03-14 13:33:19','',73,'http://demoweblinks.in/naishautomation/?p=206',0,'revision','',0),(207,1,'2022-03-14 13:33:19','2022-03-14 13:33:19','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section>\n            <h2>Automate</h2><h3>OverAll</h3>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 13:33:19','2022-03-14 13:33:19','',73,'http://demoweblinks.in/naishautomation/?p=207',0,'revision','',0),(208,1,'2022-03-14 13:33:19','2022-03-14 13:33:19','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section>\n            <h2>Automate</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 13:33:19','2022-03-14 13:33:19','',73,'http://demoweblinks.in/naishautomation/?p=208',0,'revision','',0),(209,1,'2022-03-14 13:33:38','2022-03-14 13:33:38','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section>\n            <h2>Automate</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 13:33:38','2022-03-14 13:33:38','',73,'http://demoweblinks.in/naishautomation/?p=209',0,'revision','',0),(210,1,'2022-03-14 13:33:38','2022-03-14 13:33:38','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section>\n            <h2>Automate</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Architect</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 13:33:38','2022-03-14 13:33:38','',73,'http://demoweblinks.in/naishautomation/?p=210',0,'revision','',0),(211,1,'2022-03-14 13:33:38','2022-03-14 13:33:38','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2>Automate</h2>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-14 13:33:38','2022-03-14 13:33:38','',73,'http://demoweblinks.in/naishautomation/?p=211',0,'revision','',0),(212,1,'2022-03-15 04:09:24','2022-03-15 04:09:24','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2>Automate</h2>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-15 04:09:24','2022-03-15 04:09:24','',73,'http://demoweblinks.in/naishautomation/?p=212',0,'revision','',0),(213,1,'2022-03-15 04:09:24','2022-03-15 04:09:24','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2>Automate</h2>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-15 04:09:24','2022-03-15 04:09:24','',73,'http://demoweblinks.in/naishautomation/?p=213',0,'revision','',0),(214,1,'2022-03-15 04:09:24','2022-03-15 04:09:24','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2></h2>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-15 04:09:24','2022-03-15 04:09:24','',73,'http://demoweblinks.in/naishautomation/?p=214',0,'revision','',0),(218,1,'2022-03-16 14:02:06','2022-03-16 14:02:06','','Design role','','inherit','closed','closed','','56-revision-v1','','','2022-03-16 14:02:06','2022-03-16 14:02:06','',56,'http://demoweblinks.in/naishautomation/?p=218',0,'revision','',0),(219,1,'2022-03-17 03:59:42','2022-03-17 03:59:42','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 03:59:42','2022-03-17 03:59:42','',74,'http://demoweblinks.in/naishautomation/?p=219',0,'revision','',0),(220,1,'2022-03-17 03:59:42','2022-03-17 03:59:42','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 03:59:42','2022-03-17 03:59:42','',74,'http://demoweblinks.in/naishautomation/?p=220',0,'revision','',0),(221,1,'2022-03-17 03:59:43','2022-03-17 03:59:43','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 03:59:43','2022-03-17 03:59:43','',74,'http://demoweblinks.in/naishautomation/?p=221',0,'revision','',0),(222,1,'2022-03-17 04:34:38','2022-03-17 04:34:38','','naish logo (1)','','inherit','open','closed','','naish-logo-1','','','2022-03-17 04:34:38','2022-03-17 04:34:38','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/naish-logo-1.png',0,'attachment','image/png',0),(226,1,'2022-03-17 04:35:30','2022-03-17 04:35:30','http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/cropped-cropped-naish-logo-1.png','cropped-cropped-naish-logo-1.png','','inherit','open','closed','','cropped-cropped-naish-logo-1-png','','','2022-03-17 04:35:30','2022-03-17 04:35:30','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/cropped-cropped-naish-logo-1.png',0,'attachment','image/png',0),(228,1,'2022-03-17 04:36:07','2022-03-17 04:36:07','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 04:36:07','2022-03-17 04:36:07','',74,'http://demoweblinks.in/naishautomation/?p=228',0,'revision','',0),(229,1,'2022-03-17 04:36:08','2022-03-17 04:36:08','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 04:36:08','2022-03-17 04:36:08','',74,'http://demoweblinks.in/naishautomation/?p=229',0,'revision','',0),(230,1,'2022-03-17 04:36:08','2022-03-17 04:36:08','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 04:36:08','2022-03-17 04:36:08','',74,'http://demoweblinks.in/naishautomation/?p=230',0,'revision','',0),(231,1,'2022-03-17 04:38:08','2022-03-17 04:38:08','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 04:38:08','2022-03-17 04:38:08','',74,'http://demoweblinks.in/naishautomation/?p=231',0,'revision','',0),(232,1,'2022-03-17 04:38:08','2022-03-17 04:38:08','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 04:38:08','2022-03-17 04:38:08','',74,'http://demoweblinks.in/naishautomation/?p=232',0,'revision','',0),(233,1,'2022-03-17 04:38:08','2022-03-17 04:38:08','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 04:38:08','2022-03-17 04:38:08','',74,'http://demoweblinks.in/naishautomation/?p=233',0,'revision','',0),(234,1,'2022-03-17 04:38:25','2022-03-17 04:38:25','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 04:38:25','2022-03-17 04:38:25','',74,'http://demoweblinks.in/naishautomation/?p=234',0,'revision','',0),(235,1,'2022-03-17 04:38:26','2022-03-17 04:38:26','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2021</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 04:38:26','2022-03-17 04:38:26','',74,'http://demoweblinks.in/naishautomation/?p=235',0,'revision','',0),(236,1,'2022-03-17 04:38:26','2022-03-17 04:38:26','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 04:38:26','2022-03-17 04:38:26','',74,'http://demoweblinks.in/naishautomation/?p=236',0,'revision','',0),(237,1,'2022-03-17 04:40:37','2022-03-17 04:40:37','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 04:40:37','2022-03-17 04:40:37','',74,'http://demoweblinks.in/naishautomation/?p=237',0,'revision','',0),(238,1,'2022-03-17 04:40:37','2022-03-17 04:40:37','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 04:40:37','2022-03-17 04:40:37','',74,'http://demoweblinks.in/naishautomation/?p=238',0,'revision','',0),(239,1,'2022-03-17 04:40:38','2022-03-17 04:40:38','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 04:40:38','2022-03-17 04:40:38','',74,'http://demoweblinks.in/naishautomation/?p=239',0,'revision','',0),(242,1,'2022-03-17 04:46:26','2022-03-17 04:46:26','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2></h2>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-17 04:46:26','2022-03-17 04:46:26','',73,'http://demoweblinks.in/naishautomation/?p=242',0,'revision','',0),(243,1,'2022-03-17 04:46:26','2022-03-17 04:46:26','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h5>Team</h5><h3>Meet our team.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x-40x43.jpg\" alt=\"demo-attachment-737-Mask-Group-84448@2x@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84448@2x@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX-40x43.png\" alt=\"demo-attachment-772-pretty-woman-standing-over-grey-wall-background-4A829TX\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/pretty-woman-standing-over-grey-wall-background-4A829TX.png\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x-40x43.jpg\" alt=\"demo-attachment-773-Mask-Group-844449@2x\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-844449@2x.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE-40x43.jpg\" alt=\"demo-attachment-776-cheerful-young-businesswoman-standing-near-P5A34JE\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/cheerful-young-businesswoman-standing-near-P5A34JE.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman-40x43.jpg\" alt=\"demo-attachment-777-Full-body-portrait-of-professional-business-woman\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Full-body-portrait-of-professional-business-woman.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section style=\"\" >    \n            <img width=\"429\" height=\"464\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F-40x43.jpg\" alt=\"demo-attachment-779-portrait-of-a-confident-man-over-gray-background-PDL3Q9F\" data-ratio=\"0.92\" data-original-w=\"429\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/portrait-of-a-confident-man-over-gray-background-PDL3Q9F.jpg\" />        \n                        <h4>Jimmie Benedict</h4>\n                        <h5>Marketing</h5>\n                    <ul>\n                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                    <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                                            <li>\n                            <a href=\"#\" target=\"_blank\" rel=\"noopener\">\n                            </a>\n                        </li>\n                                                                                                  </ul>\n</section><!-- widget-container -->		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2></h2>\n        </section>','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-17 04:46:26','2022-03-17 04:46:26','',73,'http://demoweblinks.in/naishautomation/?p=243',0,'revision','',0),(244,1,'2022-03-17 04:46:26','2022-03-17 04:46:26','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2></h2>\n        </section>		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-17 04:46:26','2022-03-17 04:46:26','',73,'http://demoweblinks.in/naishautomation/?p=244',0,'revision','',0),(245,1,'2022-03-17 04:47:25','2022-03-17 04:47:25','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2></h2>\n        </section>		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-17 04:47:25','2022-03-17 04:47:25','',73,'http://demoweblinks.in/naishautomation/?p=245',0,'revision','',0),(246,1,'2022-03-17 04:47:25','2022-03-17 04:47:25','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2></h2>\n        </section>		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-17 04:47:25','2022-03-17 04:47:25','',73,'http://demoweblinks.in/naishautomation/?p=246',0,'revision','',0),(247,1,'2022-03-17 04:47:25','2022-03-17 04:47:25','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2></h2>\n        </section>		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-17 04:47:25','2022-03-17 04:47:25','',73,'http://demoweblinks.in/naishautomation/?p=247',0,'revision','',0),(248,1,'2022-03-17 04:49:05','2022-03-17 04:49:05','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2></h2>\n        </section>		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-17 04:49:05','2022-03-17 04:49:05','',73,'http://demoweblinks.in/naishautomation/?p=248',0,'revision','',0),(249,1,'2022-03-17 04:49:05','2022-03-17 04:49:05','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2></h2>\n        </section>		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-17 04:49:05','2022-03-17 04:49:05','',73,'http://demoweblinks.in/naishautomation/?p=249',0,'revision','',0),(250,1,'2022-03-17 04:49:05','2022-03-17 04:49:05','<section>\n            <h5>Welcome</h5><h3>We design &amp; build interiors</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"814\" height=\"699\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash.png\" alt=\"demo-attachment-712-jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"1.16\" data-original-w=\"814\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"671\" height=\"714\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/shunya-koide-lnGrGTmftcY-unsplash.png\" alt=\"demo-attachment-806-shunya-koide-lnGrGTmftcY-unsplash\" data-ratio=\"0.94\" data-original-w=\"671\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                <h4>We Build Value.</h4>\n                                        <p>nnovation is often the ability to reach into the past and bring back what is good</p>                \n                <a href=\"#\" target=\"_self\" rel=\"noopener\">work with us</a>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>All Over The World In Automation</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.vA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.v</p>\n        </section>		\n			<section>\n            <h2></h2>\n        </section>		\n			<section>\n            <h5>our missions</h5><h3>Learn about our success</h3>\n        </section>		\n				0\n							Products\n				0\n							Happy Customers\n				0\n							Clients\n				0\n							Projects Launched\n				0\n							Materials','About','','inherit','closed','closed','','73-revision-v1','','','2022-03-17 04:49:05','2022-03-17 04:49:05','',73,'http://demoweblinks.in/naishautomation/?p=250',0,'revision','',0),(252,1,'2022-03-17 04:50:12','2022-03-17 04:50:12','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1518;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#8f1518;\n}','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-17 04:50:12','2022-03-17 04:50:12','',54,'http://demoweblinks.in/naishautomation/?p=252',0,'revision','',0),(254,1,'2022-03-17 04:50:56','2022-03-17 04:50:56','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1518;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-17 04:50:56','2022-03-17 04:50:56','',54,'http://demoweblinks.in/naishautomation/?p=254',0,'revision','',0),(255,1,'2022-03-17 04:52:33','2022-03-17 04:52:33','<section>\n            <h5>Projects</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section style=\"\" ><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-12/\"><img width=\"606\" height=\"726\" alt=\"gilles-desjardins-1rBs-8OyxMo-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-12/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"962\"\n					data-ulike-nonce=\"712655cc25\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_962\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-11/\"><img width=\"606\" height=\"726\" alt=\"meric-dagli-KgDkiEzx3cA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-11/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"957\"\n					data-ulike-nonce=\"bd3c98dd49\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_957\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-10/\"><img width=\"606\" height=\"726\" alt=\"jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-10/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"955\"\n					data-ulike-nonce=\"44129fbb56\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_955\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-9/\"><img width=\"606\" height=\"726\" alt=\"ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-9/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"938\"\n					data-ulike-nonce=\"602b4261b4\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_938\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-8/\"><img width=\"606\" height=\"726\" alt=\"thai-an-BE6CIwysCvU-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-8/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"935\"\n					data-ulike-nonce=\"c581260c08\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_935\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-7/\"><img width=\"606\" height=\"726\" alt=\"gilles-desjardins-1rBs-8OyxMo-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-7/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"932\"\n					data-ulike-nonce=\"33e59dd16b\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_932\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-6/\"><img width=\"606\" height=\"726\" alt=\"meric-dagli-KgDkiEzx3cA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-6/\">\n                                            Architectural designer                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"930\"\n					data-ulike-nonce=\"549672d5dd\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_930\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-5/\"><img width=\"606\" height=\"726\" alt=\"jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-5/\">\n                                            Architectural drawing                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"926\"\n					data-ulike-nonce=\"0560f87885\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_926\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-4/\"><img width=\"606\" height=\"726\" alt=\"connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-4/\">\n                                            Chartered architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"367\"\n					data-ulike-nonce=\"6e32e39bbe\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_367\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-3/\"><img width=\"606\" height=\"726\" alt=\"708_2-35060\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-3/\">\n                                            Landscape architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"365\"\n					data-ulike-nonce=\"5f3fd67277\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_365\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-2/\"><img width=\"606\" height=\"726\" alt=\"tyler-schaefer-bODOLilbwJs-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-2/\">\n                                            List of architects                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"363\"\n					data-ulike-nonce=\"94d304561c\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_363\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" alt=\"volkan-vardar-y7RW7g2izy0-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design/\">\n                                            Architect like                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"357\"\n					data-ulike-nonce=\"6b9b0d4f03\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_357\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Products','','inherit','closed','closed','','72-revision-v1','','','2022-03-17 04:52:33','2022-03-17 04:52:33','',72,'http://demoweblinks.in/naishautomation/?p=255',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (256,1,'2022-03-17 05:07:11','2022-03-17 05:07:11','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Design Project</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Office design</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in architect</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-440x330.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-440x330.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-440x330.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-440x330.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-440x330.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"56\"\n					data-ulike-nonce=\"7379e35b53\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_56\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"57\"\n					data-ulike-nonce=\"6029bcd9b1\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_57\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"58\"\n					data-ulike-nonce=\"945e6b4934\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_58\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"59\"\n					data-ulike-nonce=\"ab5effb704\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_59\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"60\"\n					data-ulike-nonce=\"abcc770cfe\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_60\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"61\"\n					data-ulike-nonce=\"170ab69f70\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_61\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-designer/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-designer/\">\n                                            Architectural designer                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"62\"\n					data-ulike-nonce=\"76ab10a24d\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_62\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-drawing/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-drawing/\">\n                                            Architectural drawing                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"63\"\n					data-ulike-nonce=\"d9b041f63c\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_63\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/chartered-architect/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1364-connor-wang-MNz7IGrcEl0-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/chartered-architect/\">\n                                            Chartered architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"65\"\n					data-ulike-nonce=\"8127611f34\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_65\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/landscape-architect/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/landscape-architect/\">\n                                            Landscape architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"66\"\n					data-ulike-nonce=\"10ea7ac9ad\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_66\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/list-of-architects/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1366-tyler-schaefer-bODOLilbwJs-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/list-of-architects/\">\n                                            List of architects                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"67\"\n					data-ulike-nonce=\"ce39d2e512\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_67\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architect-like/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1358-volkan-vardar-y7RW7g2izy0-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architect-like/\">\n                                            Architect like                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"68\"\n					data-ulike-nonce=\"70f3f94b3a\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_68\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:07:11','2022-03-17 05:07:11','',71,'http://demoweblinks.in/naishautomation/?p=256',0,'revision','',0),(257,1,'2022-03-17 05:07:11','2022-03-17 05:07:11','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Design Project</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Office design</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in architect</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-440x330.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-440x330.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-440x330.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-440x330.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-440x330.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-440x330.png 440w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,440px\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"56\"\n					data-ulike-nonce=\"7379e35b53\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_56\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"57\"\n					data-ulike-nonce=\"6029bcd9b1\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_57\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"58\"\n					data-ulike-nonce=\"945e6b4934\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_58\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"59\"\n					data-ulike-nonce=\"ab5effb704\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_59\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"60\"\n					data-ulike-nonce=\"abcc770cfe\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_60\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"61\"\n					data-ulike-nonce=\"170ab69f70\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_61\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-designer/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-designer/\">\n                                            Architectural designer                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"62\"\n					data-ulike-nonce=\"76ab10a24d\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_62\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-drawing/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-drawing/\">\n                                            Architectural drawing                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"63\"\n					data-ulike-nonce=\"d9b041f63c\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_63\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/chartered-architect/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1364-connor-wang-MNz7IGrcEl0-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/chartered-architect/\">\n                                            Chartered architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"65\"\n					data-ulike-nonce=\"8127611f34\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_65\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/landscape-architect/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/landscape-architect/\">\n                                            Landscape architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"66\"\n					data-ulike-nonce=\"10ea7ac9ad\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_66\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/list-of-architects/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1366-tyler-schaefer-bODOLilbwJs-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/list-of-architects/\">\n                                            List of architects                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"67\"\n					data-ulike-nonce=\"ce39d2e512\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_67\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architect-like/\"><img width=\"606\" height=\"455\" alt=\"demo-attachment-1358-volkan-vardar-y7RW7g2izy0-unsplash-1\" data-ratio=\"1.33\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-150x113.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-300x225.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-768x576.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1024x768.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x455.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1090x817.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x455.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architect-like/\">\n                                            Architect like                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"68\"\n					data-ulike-nonce=\"70f3f94b3a\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_68\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:07:11','2022-03-17 05:07:11','',71,'http://demoweblinks.in/naishautomation/?p=257',0,'revision','',0),(258,1,'2022-03-17 05:07:11','2022-03-17 05:07:11','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:07:11','2022-03-17 05:07:11','',71,'http://demoweblinks.in/naishautomation/?p=258',0,'revision','',0),(259,1,'2022-03-17 05:08:40','2022-03-17 05:08:40','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:08:40','2022-03-17 05:08:40','',71,'http://demoweblinks.in/naishautomation/?p=259',0,'revision','',0),(260,1,'2022-03-17 05:08:40','2022-03-17 05:08:40','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:08:40','2022-03-17 05:08:40','',71,'http://demoweblinks.in/naishautomation/?p=260',0,'revision','',0),(261,1,'2022-03-17 05:08:41','2022-03-17 05:08:41','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:08:41','2022-03-17 05:08:41','',71,'http://demoweblinks.in/naishautomation/?p=261',0,'revision','',0),(262,1,'2022-03-17 05:09:28','2022-03-17 05:09:28','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:09:28','2022-03-17 05:09:28','',71,'http://demoweblinks.in/naishautomation/?p=262',0,'revision','',0),(263,1,'2022-03-17 05:09:28','2022-03-17 05:09:28','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:09:28','2022-03-17 05:09:28','',71,'http://demoweblinks.in/naishautomation/?p=263',0,'revision','',0),(264,1,'2022-03-17 05:09:29','2022-03-17 05:09:29','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:09:29','2022-03-17 05:09:29','',71,'http://demoweblinks.in/naishautomation/?p=264',0,'revision','',0),(265,1,'2022-03-17 05:09:38','2022-03-17 05:09:38','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:09:38','2022-03-17 05:09:38','',71,'http://demoweblinks.in/naishautomation/?p=265',0,'revision','',0),(266,1,'2022-03-17 05:09:38','2022-03-17 05:09:38','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:09:38','2022-03-17 05:09:38','',71,'http://demoweblinks.in/naishautomation/?p=266',0,'revision','',0),(267,1,'2022-03-17 05:09:38','2022-03-17 05:09:38','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:09:38','2022-03-17 05:09:38','',71,'http://demoweblinks.in/naishautomation/?p=267',0,'revision','',0),(268,1,'2022-03-17 05:09:49','2022-03-17 05:09:49','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:09:49','2022-03-17 05:09:49','',71,'http://demoweblinks.in/naishautomation/?p=268',0,'revision','',0),(269,1,'2022-03-17 05:09:50','2022-03-17 05:09:50','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:09:50','2022-03-17 05:09:50','',71,'http://demoweblinks.in/naishautomation/?p=269',0,'revision','',0),(270,1,'2022-03-17 05:09:50','2022-03-17 05:09:50','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services1</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services4</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services2</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services5</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services3</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Services6</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>Naish Auto</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Services','','inherit','closed','closed','','71-revision-v1','','','2022-03-17 05:09:50','2022-03-17 05:09:50','',71,'http://demoweblinks.in/naishautomation/?p=270',0,'revision','',0),(271,1,'2022-03-17 05:13:03','2022-03-17 05:13:03','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 05:13:03','2022-03-17 05:13:03','',74,'http://demoweblinks.in/naishautomation/?p=271',0,'revision','',0),(272,1,'2022-03-17 05:13:03','2022-03-17 05:13:03','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 05:13:03','2022-03-17 05:13:03','',74,'http://demoweblinks.in/naishautomation/?p=272',0,'revision','',0),(273,1,'2022-03-17 05:13:03','2022-03-17 05:13:03','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 05:13:03','2022-03-17 05:13:03','',74,'http://demoweblinks.in/naishautomation/?p=273',0,'revision','',0),(274,1,'2022-03-17 05:18:19','2022-03-17 05:18:19','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 05:18:19','2022-03-17 05:18:19','',74,'http://demoweblinks.in/naishautomation/?p=274',0,'revision','',0),(275,1,'2022-03-17 05:18:19','2022-03-17 05:18:19','<section>\n            <h2>living space.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 05:18:19','2022-03-17 05:18:19','',74,'http://demoweblinks.in/naishautomation/?p=275',0,'revision','',0),(276,1,'2022-03-17 05:18:20','2022-03-17 05:18:20','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 05:18:20','2022-03-17 05:18:20','',74,'http://demoweblinks.in/naishautomation/?p=276',0,'revision','',0),(277,1,'2022-03-17 05:19:59','2022-03-17 05:19:59','<section>\n            <h5>Projects</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section style=\"\" ><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-12/\"><img width=\"606\" height=\"726\" alt=\"gilles-desjardins-1rBs-8OyxMo-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-12/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"962\"\n					data-ulike-nonce=\"712655cc25\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_962\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-11/\"><img width=\"606\" height=\"726\" alt=\"meric-dagli-KgDkiEzx3cA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-11/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"957\"\n					data-ulike-nonce=\"bd3c98dd49\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_957\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-10/\"><img width=\"606\" height=\"726\" alt=\"jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-10/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"955\"\n					data-ulike-nonce=\"44129fbb56\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_955\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-9/\"><img width=\"606\" height=\"726\" alt=\"ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-9/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"938\"\n					data-ulike-nonce=\"602b4261b4\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_938\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-8/\"><img width=\"606\" height=\"726\" alt=\"thai-an-BE6CIwysCvU-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-8/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"935\"\n					data-ulike-nonce=\"c581260c08\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_935\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-7/\"><img width=\"606\" height=\"726\" alt=\"gilles-desjardins-1rBs-8OyxMo-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-7/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"932\"\n					data-ulike-nonce=\"33e59dd16b\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_932\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-6/\"><img width=\"606\" height=\"726\" alt=\"meric-dagli-KgDkiEzx3cA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-6/\">\n                                            Architectural designer                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"930\"\n					data-ulike-nonce=\"549672d5dd\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_930\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-5/\"><img width=\"606\" height=\"726\" alt=\"jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-5/\">\n                                            Architectural drawing                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"926\"\n					data-ulike-nonce=\"0560f87885\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_926\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-4/\"><img width=\"606\" height=\"726\" alt=\"connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-4/\">\n                                            Chartered architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"367\"\n					data-ulike-nonce=\"6e32e39bbe\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_367\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-3/\"><img width=\"606\" height=\"726\" alt=\"708_2-35060\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-3/\">\n                                            Landscape architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"365\"\n					data-ulike-nonce=\"5f3fd67277\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_365\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-2/\"><img width=\"606\" height=\"726\" alt=\"tyler-schaefer-bODOLilbwJs-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-2/\">\n                                            List of architects                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"363\"\n					data-ulike-nonce=\"94d304561c\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_363\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" alt=\"volkan-vardar-y7RW7g2izy0-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design/\">\n                                            Architect like                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"357\"\n					data-ulike-nonce=\"6b9b0d4f03\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_357\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Products','','inherit','closed','closed','','72-revision-v1','','','2022-03-17 05:19:59','2022-03-17 05:19:59','',72,'http://demoweblinks.in/naishautomation/?p=277',0,'revision','',0),(278,1,'2022-03-17 05:19:59','2022-03-17 05:19:59','<section>\n            <h5>Projects</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section style=\"\" ><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-12/\"><img width=\"606\" height=\"726\" alt=\"gilles-desjardins-1rBs-8OyxMo-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-12/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"962\"\n					data-ulike-nonce=\"712655cc25\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_962\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-11/\"><img width=\"606\" height=\"726\" alt=\"meric-dagli-KgDkiEzx3cA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-11/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"957\"\n					data-ulike-nonce=\"bd3c98dd49\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_957\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-10/\"><img width=\"606\" height=\"726\" alt=\"jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-10/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"955\"\n					data-ulike-nonce=\"44129fbb56\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_955\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-9/\"><img width=\"606\" height=\"726\" alt=\"ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-9/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"938\"\n					data-ulike-nonce=\"602b4261b4\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_938\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-8/\"><img width=\"606\" height=\"726\" alt=\"thai-an-BE6CIwysCvU-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-8/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"935\"\n					data-ulike-nonce=\"c581260c08\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_935\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-7/\"><img width=\"606\" height=\"726\" alt=\"gilles-desjardins-1rBs-8OyxMo-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-7/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"932\"\n					data-ulike-nonce=\"33e59dd16b\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_932\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-6/\"><img width=\"606\" height=\"726\" alt=\"meric-dagli-KgDkiEzx3cA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-6/\">\n                                            Architectural designer                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"930\"\n					data-ulike-nonce=\"549672d5dd\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_930\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-5/\"><img width=\"606\" height=\"726\" alt=\"jason-leung-poI7DelFiVA-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-5/\">\n                                            Architectural drawing                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"926\"\n					data-ulike-nonce=\"0560f87885\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_926\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-4/\"><img width=\"606\" height=\"726\" alt=\"connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-4/\">\n                                            Chartered architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"367\"\n					data-ulike-nonce=\"6e32e39bbe\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_367\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-3/\"><img width=\"606\" height=\"726\" alt=\"708_2-35060\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/708_2-35060-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-3/\">\n                                            Landscape architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"365\"\n					data-ulike-nonce=\"5f3fd67277\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_365\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-2/\"><img width=\"606\" height=\"726\" alt=\"tyler-schaefer-bODOLilbwJs-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design-2/\">\n                                            List of architects                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"363\"\n					data-ulike-nonce=\"94d304561c\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_363\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" alt=\"volkan-vardar-y7RW7g2izy0-unsplash\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-150x180.jpg 150w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-300x359.jpg 300w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-768x920.jpg 768w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1024x1226.jpg 1024w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x726.jpg 607w,https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1090x1305.jpg 1090w\" data-src=\"https://demo.phlox.pro/portfolio-architect/wp-content/uploads/sites/231/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x726.jpg\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio/lighting-design/\">\n                                            Architect like                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"357\"\n					data-ulike-nonce=\"6b9b0d4f03\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-disable-pophover=\"0\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_357\"></button>0			\n                                                                                <a href=\"https://demo.phlox.pro/portfolio-architect/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Products','','inherit','closed','closed','','72-revision-v1','','','2022-03-17 05:19:59','2022-03-17 05:19:59','',72,'http://demoweblinks.in/naishautomation/?p=278',0,'revision','',0),(279,1,'2022-03-17 05:20:00','2022-03-17 05:20:00','<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section style=\"\" ><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"56\"\n					data-ulike-nonce=\"fc754bef2c\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_56\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"57\"\n					data-ulike-nonce=\"0e8d5ba0a7\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_57\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"58\"\n					data-ulike-nonce=\"ae2507358b\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_58\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"59\"\n					data-ulike-nonce=\"fbbb6a1972\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_59\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"60\"\n					data-ulike-nonce=\"f3fa569134\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_60\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"61\"\n					data-ulike-nonce=\"fb9692877c\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_61\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-designer/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-designer/\">\n                                            Architectural designer                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"62\"\n					data-ulike-nonce=\"840c931493\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_62\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-drawing/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-drawing/\">\n                                            Architectural drawing                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"63\"\n					data-ulike-nonce=\"f8a13ad951\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_63\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/chartered-architect/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1364-connor-wang-MNz7IGrcEl0-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/chartered-architect/\">\n                                            Chartered architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"65\"\n					data-ulike-nonce=\"a0c551baf5\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_65\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/landscape-architect/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/landscape-architect/\">\n                                            Landscape architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"66\"\n					data-ulike-nonce=\"f2b452be9d\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_66\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/list-of-architects/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1366-tyler-schaefer-bODOLilbwJs-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/list-of-architects/\">\n                                            List of architects                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"67\"\n					data-ulike-nonce=\"bc01228f35\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_67\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architect-like/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1358-volkan-vardar-y7RW7g2izy0-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architect-like/\">\n                                            Architect like                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"68\"\n					data-ulike-nonce=\"0e3537dcd6\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_68\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Products','','inherit','closed','closed','','72-revision-v1','','','2022-03-17 05:20:00','2022-03-17 05:20:00','',72,'http://demoweblinks.in/naishautomation/?p=279',0,'revision','',0),(280,1,'2022-03-17 05:50:18','2022-03-17 05:50:18','','Portfolio1','','inherit','closed','closed','','56-revision-v1','','','2022-03-17 05:50:18','2022-03-17 05:50:18','',56,'http://demoweblinks.in/naishautomation/?p=280',0,'revision','',0),(281,1,'2022-03-17 05:50:40','2022-03-17 05:50:40','','Portfolio2','','inherit','closed','closed','','57-revision-v1','','','2022-03-17 05:50:40','2022-03-17 05:50:40','',57,'http://demoweblinks.in/naishautomation/?p=281',0,'revision','',0),(282,1,'2022-03-17 05:50:56','2022-03-17 05:50:56','','Portfolio3','','inherit','closed','closed','','58-revision-v1','','','2022-03-17 05:50:56','2022-03-17 05:50:56','',58,'http://demoweblinks.in/naishautomation/?p=282',0,'revision','',0),(283,1,'2022-03-17 05:51:11','2022-03-17 05:51:11','','Portfolio4','','inherit','closed','closed','','59-revision-v1','','','2022-03-17 05:51:11','2022-03-17 05:51:11','',59,'http://demoweblinks.in/naishautomation/?p=283',0,'revision','',0),(284,1,'2022-03-17 05:51:27','2022-03-17 05:51:27','','Portfolio5','','inherit','closed','closed','','60-revision-v1','','','2022-03-17 05:51:27','2022-03-17 05:51:27','',60,'http://demoweblinks.in/naishautomation/?p=284',0,'revision','',0),(285,1,'2022-03-17 05:51:50','2022-03-17 05:51:50','','Portfolio6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 05:51:50','2022-03-17 05:51:50','',61,'http://demoweblinks.in/naishautomation/?p=285',0,'revision','',0),(292,1,'2022-03-17 06:02:59','2022-03-17 06:02:59','','Product1','','inherit','closed','closed','','56-revision-v1','','','2022-03-17 06:02:59','2022-03-17 06:02:59','',56,'http://demoweblinks.in/naishautomation/?p=292',0,'revision','',0),(293,1,'2022-03-17 06:03:10','2022-03-17 06:03:10','','Product2','','inherit','closed','closed','','57-revision-v1','','','2022-03-17 06:03:10','2022-03-17 06:03:10','',57,'http://demoweblinks.in/naishautomation/?p=293',0,'revision','',0),(294,1,'2022-03-17 06:03:23','2022-03-17 06:03:23','','Product3','','inherit','closed','closed','','58-revision-v1','','','2022-03-17 06:03:23','2022-03-17 06:03:23','',58,'http://demoweblinks.in/naishautomation/?p=294',0,'revision','',0),(295,1,'2022-03-17 06:03:35','2022-03-17 06:03:35','','Product4','','inherit','closed','closed','','59-revision-v1','','','2022-03-17 06:03:35','2022-03-17 06:03:35','',59,'http://demoweblinks.in/naishautomation/?p=295',0,'revision','',0),(296,1,'2022-03-17 06:03:45','2022-03-17 06:03:45','','Product5','','inherit','closed','closed','','60-revision-v1','','','2022-03-17 06:03:45','2022-03-17 06:03:45','',60,'http://demoweblinks.in/naishautomation/?p=296',0,'revision','',0),(297,1,'2022-03-17 06:03:56','2022-03-17 06:03:56','','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 06:03:56','2022-03-17 06:03:56','',61,'http://demoweblinks.in/naishautomation/?p=297',0,'revision','',0),(298,1,'2022-03-17 06:17:22','2022-03-17 06:17:22','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 06:17:22','2022-03-17 06:17:22','',74,'http://demoweblinks.in/naishautomation/?p=298',0,'revision','',0),(299,1,'2022-03-17 06:17:23','2022-03-17 06:17:23','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                                Design role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                                Means of design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                                Environmental role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                                Construction role                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                                Lighting Design                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 06:17:23','2022-03-17 06:17:23','',74,'http://demoweblinks.in/naishautomation/?p=299',0,'revision','',0),(300,1,'2022-03-17 06:17:24','2022-03-17 06:17:24','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 06:17:24','2022-03-17 06:17:24','',74,'http://demoweblinks.in/naishautomation/?p=300',0,'revision','',0),(301,1,'2022-03-17 06:18:28','2022-03-17 06:18:28','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 06:18:28','2022-03-17 06:18:28','',74,'http://demoweblinks.in/naishautomation/?p=301',0,'revision','',0),(302,1,'2022-03-17 06:18:28','2022-03-17 06:18:28','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 06:18:28','2022-03-17 06:18:28','',74,'http://demoweblinks.in/naishautomation/?p=302',0,'revision','',0),(303,1,'2022-03-17 06:18:30','2022-03-17 06:18:30','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 06:18:30','2022-03-17 06:18:30','',74,'http://demoweblinks.in/naishautomation/?p=303',0,'revision','',0),(304,1,'2022-03-17 06:57:35','2022-03-17 06:57:35','','naish logo (2)','','inherit','open','closed','','naish-logo-2','','','2022-03-17 06:57:35','2022-03-17 06:57:35','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/naish-logo-2.png',0,'attachment','image/png',0),(305,1,'2022-03-17 06:57:46','2022-03-17 06:57:46','http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/cropped-naish-logo-2.png','cropped-naish-logo-2.png','','inherit','open','closed','','cropped-naish-logo-2-png','','','2022-03-17 06:57:46','2022-03-17 06:57:46','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/cropped-naish-logo-2.png',0,'attachment','image/png',0),(309,1,'2022-03-17 06:59:41','2022-03-17 06:59:41','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-17 06:59:41','2022-03-17 06:59:41','',54,'http://demoweblinks.in/naishautomation/?p=309',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (310,1,'2022-03-17 07:01:42','2022-03-17 07:01:42','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:01:42','2022-03-17 07:01:42','',74,'http://demoweblinks.in/naishautomation/?p=310',0,'revision','',0),(311,1,'2022-03-17 07:01:42','2022-03-17 07:01:42','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" /></a>                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:01:42','2022-03-17 07:01:42','',74,'http://demoweblinks.in/naishautomation/?p=311',0,'revision','',0),(312,1,'2022-03-17 07:01:43','2022-03-17 07:01:43','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:01:43','2022-03-17 07:01:43','',74,'http://demoweblinks.in/naishautomation/?p=312',0,'revision','',0),(313,1,'2022-03-17 07:02:14','2022-03-17 07:02:14','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:02:14','2022-03-17 07:02:14','',74,'http://demoweblinks.in/naishautomation/?p=313',0,'revision','',0),(314,1,'2022-03-17 07:02:14','2022-03-17 07:02:14','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:02:14','2022-03-17 07:02:14','',74,'http://demoweblinks.in/naishautomation/?p=314',0,'revision','',0),(315,1,'2022-03-17 07:02:16','2022-03-17 07:02:16','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:02:16','2022-03-17 07:02:16','',74,'http://demoweblinks.in/naishautomation/?p=315',0,'revision','',0),(316,1,'2022-03-17 07:03:01','2022-03-17 07:03:01','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:03:01','2022-03-17 07:03:01','',74,'http://demoweblinks.in/naishautomation/?p=316',0,'revision','',0),(317,1,'2022-03-17 07:03:01','2022-03-17 07:03:01','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:03:01','2022-03-17 07:03:01','',74,'http://demoweblinks.in/naishautomation/?p=317',0,'revision','',0),(318,1,'2022-03-17 07:03:03','2022-03-17 07:03:03','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:03:03','2022-03-17 07:03:03','',74,'http://demoweblinks.in/naishautomation/?p=318',0,'revision','',0),(319,1,'2022-03-17 07:03:27','2022-03-17 07:03:27','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:03:27','2022-03-17 07:03:27','',74,'http://demoweblinks.in/naishautomation/?p=319',0,'revision','',0),(320,1,'2022-03-17 07:03:27','2022-03-17 07:03:27','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:03:27','2022-03-17 07:03:27','',74,'http://demoweblinks.in/naishautomation/?p=320',0,'revision','',0),(321,1,'2022-03-17 07:03:28','2022-03-17 07:03:28','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:03:28','2022-03-17 07:03:28','',74,'http://demoweblinks.in/naishautomation/?p=321',0,'revision','',0),(322,1,'2022-03-17 07:03:43','2022-03-17 07:03:43','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:03:43','2022-03-17 07:03:43','',74,'http://demoweblinks.in/naishautomation/?p=322',0,'revision','',0),(323,1,'2022-03-17 07:03:43','2022-03-17 07:03:43','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:03:43','2022-03-17 07:03:43','',74,'http://demoweblinks.in/naishautomation/?p=323',0,'revision','',0),(324,1,'2022-03-17 07:03:44','2022-03-17 07:03:44','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:03:44','2022-03-17 07:03:44','',74,'http://demoweblinks.in/naishautomation/?p=324',0,'revision','',0),(325,1,'2022-03-17 07:04:00','2022-03-17 07:04:00','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:04:00','2022-03-17 07:04:00','',74,'http://demoweblinks.in/naishautomation/?p=325',0,'revision','',0),(326,1,'2022-03-17 07:04:00','2022-03-17 07:04:00','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:04:00','2022-03-17 07:04:00','',74,'http://demoweblinks.in/naishautomation/?p=326',0,'revision','',0),(327,1,'2022-03-17 07:04:01','2022-03-17 07:04:01','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:04:01','2022-03-17 07:04:01','',74,'http://demoweblinks.in/naishautomation/?p=327',0,'revision','',0),(328,1,'2022-03-17 07:04:35','2022-03-17 07:04:35','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:04:35','2022-03-17 07:04:35','',74,'http://demoweblinks.in/naishautomation/?p=328',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (329,1,'2022-03-17 07:04:35','2022-03-17 07:04:35','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:04:35','2022-03-17 07:04:35','',74,'http://demoweblinks.in/naishautomation/?p=329',0,'revision','',0),(330,1,'2022-03-17 07:04:36','2022-03-17 07:04:36','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:04:36','2022-03-17 07:04:36','',74,'http://demoweblinks.in/naishautomation/?p=330',0,'revision','',0),(331,1,'2022-03-17 07:05:51','2022-03-17 07:05:51','','naish logo (3)','','inherit','open','closed','','naish-logo-3','','','2022-03-17 07:05:51','2022-03-17 07:05:51','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/naish-logo-3.png',0,'attachment','image/png',0),(332,1,'2022-03-17 07:05:57','2022-03-17 07:05:57','http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/cropped-naish-logo-3.png','cropped-naish-logo-3.png','','inherit','open','closed','','cropped-naish-logo-3-png','','','2022-03-17 07:05:57','2022-03-17 07:05:57','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/cropped-naish-logo-3.png',0,'attachment','image/png',0),(335,1,'2022-03-17 07:20:04','2022-03-17 07:20:04','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:20:04','2022-03-17 07:20:04','',74,'http://demoweblinks.in/naishautomation/?p=335',0,'revision','',0),(336,1,'2022-03-17 07:20:05','2022-03-17 07:20:05','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:20:05','2022-03-17 07:20:05','',74,'http://demoweblinks.in/naishautomation/?p=336',0,'revision','',0),(337,1,'2022-03-17 07:20:05','2022-03-17 07:20:05','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:20:05','2022-03-17 07:20:05','',74,'http://demoweblinks.in/naishautomation/?p=337',0,'revision','',0),(338,1,'2022-03-17 07:21:37','2022-03-17 07:21:37','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:21:37','2022-03-17 07:21:37','',74,'http://demoweblinks.in/naishautomation/?p=338',0,'revision','',0),(339,1,'2022-03-17 07:21:37','2022-03-17 07:21:37','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:21:37','2022-03-17 07:21:37','',74,'http://demoweblinks.in/naishautomation/?p=339',0,'revision','',0),(340,1,'2022-03-17 07:21:38','2022-03-17 07:21:38','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:21:38','2022-03-17 07:21:38','',74,'http://demoweblinks.in/naishautomation/?p=340',0,'revision','',0),(341,1,'2022-03-17 07:21:43','2022-03-17 07:21:43','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:21:43','2022-03-17 07:21:43','',74,'http://demoweblinks.in/naishautomation/?p=341',0,'revision','',0),(342,1,'2022-03-17 07:21:43','2022-03-17 07:21:43','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:21:43','2022-03-17 07:21:43','',74,'http://demoweblinks.in/naishautomation/?p=342',0,'revision','',0),(343,1,'2022-03-17 07:21:44','2022-03-17 07:21:44','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:21:44','2022-03-17 07:21:44','',74,'http://demoweblinks.in/naishautomation/?p=343',0,'revision','',0),(344,1,'2022-03-17 07:22:44','2022-03-17 07:22:44','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:22:44','2022-03-17 07:22:44','',74,'http://demoweblinks.in/naishautomation/?p=344',0,'revision','',0),(345,1,'2022-03-17 07:22:44','2022-03-17 07:22:44','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:22:44','2022-03-17 07:22:44','',74,'http://demoweblinks.in/naishautomation/?p=345',0,'revision','',0),(346,1,'2022-03-17 07:22:45','2022-03-17 07:22:45','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:22:45','2022-03-17 07:22:45','',74,'http://demoweblinks.in/naishautomation/?p=346',0,'revision','',0),(347,1,'2022-03-17 07:23:01','2022-03-17 07:23:01','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:23:01','2022-03-17 07:23:01','',74,'http://demoweblinks.in/naishautomation/?p=347',0,'revision','',0),(348,1,'2022-03-17 07:23:01','2022-03-17 07:23:01','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >2022</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:23:01','2022-03-17 07:23:01','',74,'http://demoweblinks.in/naishautomation/?p=348',0,'revision','',0),(349,1,'2022-03-17 07:23:02','2022-03-17 07:23:02','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li><li >Join Us</li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:23:02','2022-03-17 07:23:02','',74,'http://demoweblinks.in/naishautomation/?p=349',0,'revision','',0),(351,1,'2022-03-17 07:24:57','2022-03-17 07:24:57','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li><li >Join Us</li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:24:57','2022-03-17 07:24:57','',74,'http://demoweblinks.in/naishautomation/?p=351',0,'revision','',0),(352,1,'2022-03-17 07:24:57','2022-03-17 07:24:57','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li><li >Join Us</li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:24:57','2022-03-17 07:24:57','',74,'http://demoweblinks.in/naishautomation/?p=352',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (353,1,'2022-03-17 07:24:58','2022-03-17 07:24:58','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:24:58','2022-03-17 07:24:58','',74,'http://demoweblinks.in/naishautomation/?p=353',0,'revision','',0),(354,1,'2022-03-17 07:26:35','2022-03-17 07:26:35','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:26:35','2022-03-17 07:26:35','',74,'http://demoweblinks.in/naishautomation/?p=354',0,'revision','',0),(355,1,'2022-03-17 07:26:36','2022-03-17 07:26:36','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:26:36','2022-03-17 07:26:36','',74,'http://demoweblinks.in/naishautomation/?p=355',0,'revision','',0),(356,1,'2022-03-17 07:26:36','2022-03-17 07:26:36','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li><li >Join Us</li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:26:36','2022-03-17 07:26:36','',74,'http://demoweblinks.in/naishautomation/?p=356',0,'revision','',0),(357,1,'2022-03-17 07:26:46','2022-03-17 07:26:46','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li><li >Join Us</li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:26:46','2022-03-17 07:26:46','',74,'http://demoweblinks.in/naishautomation/?p=357',0,'revision','',0),(358,1,'2022-03-17 07:26:46','2022-03-17 07:26:46','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li><li >Join Us</li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:26:46','2022-03-17 07:26:46','',74,'http://demoweblinks.in/naishautomation/?p=358',0,'revision','',0),(359,1,'2022-03-17 07:26:47','2022-03-17 07:26:47','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:26:47','2022-03-17 07:26:47','',74,'http://demoweblinks.in/naishautomation/?p=359',0,'revision','',0),(360,1,'2022-03-17 07:27:03','2022-03-17 07:27:03','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:27:03','2022-03-17 07:27:03','',74,'http://demoweblinks.in/naishautomation/?p=360',0,'revision','',0),(361,1,'2022-03-17 07:27:03','2022-03-17 07:27:03','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:27:03','2022-03-17 07:27:03','',74,'http://demoweblinks.in/naishautomation/?p=361',0,'revision','',0),(362,1,'2022-03-17 07:27:04','2022-03-17 07:27:04','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:27:04','2022-03-17 07:27:04','',74,'http://demoweblinks.in/naishautomation/?p=362',0,'revision','',0),(363,1,'2022-03-17 07:29:12','2022-03-17 07:29:12','','Testimonials','','publish','closed','closed','','testimonials','','','2022-03-17 07:29:12','2022-03-17 07:29:12','',0,'http://demoweblinks.in/naishautomation/?p=363',5,'nav_menu_item','',0),(364,1,'2022-03-17 07:29:12','2022-03-17 07:29:12','','Gallery','','publish','closed','closed','','gallery','','','2022-03-17 07:29:12','2022-03-17 07:29:12','',0,'http://demoweblinks.in/naishautomation/?p=364',6,'nav_menu_item','',0),(366,1,'2022-03-17 07:30:24','2022-03-17 07:30:24','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:30:24','2022-03-17 07:30:24','',74,'http://demoweblinks.in/naishautomation/?p=366',0,'revision','',0),(367,1,'2022-03-17 07:30:25','2022-03-17 07:30:25','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:30:25','2022-03-17 07:30:25','',74,'http://demoweblinks.in/naishautomation/?p=367',0,'revision','',0),(368,1,'2022-03-17 07:30:26','2022-03-17 07:30:26','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 07:30:26','2022-03-17 07:30:26','',74,'http://demoweblinks.in/naishautomation/?p=368',0,'revision','',0),(370,1,'2022-03-17 07:32:10','2022-03-17 07:32:10','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}\n\n.elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line {\n    border-color: #ffffff;\n}','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-17 07:32:10','2022-03-17 07:32:10','',54,'http://demoweblinks.in/naishautomation/?p=370',0,'revision','',0),(372,1,'2022-03-17 07:34:06','2022-03-17 07:34:06','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}\n\n.elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line {\n    border-color: #ffffff;\n}\n\n.elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-fs-popup .aux-panel-close .aux-close:before{\n	background-color:#fff;\n}\n\n.elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-fs-popup .aux-panel-close .aux-close:after{\n	background-color:#fff;\n}','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-17 07:34:06','2022-03-17 07:34:06','',54,'http://demoweblinks.in/naishautomation/?p=372',0,'revision','',0),(374,1,'2022-03-17 07:35:22','2022-03-17 07:35:22','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}\n\n.elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line {\n    border-color: #ffffff;\n}\n\n','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-17 07:35:22','2022-03-17 07:35:22','',54,'http://demoweblinks.in/naishautomation/?p=374',0,'revision','',0),(375,1,'2022-03-17 11:35:08','2022-03-17 11:35:08','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:35:08','2022-03-17 11:35:08','',74,'http://demoweblinks.in/naishautomation/?p=375',0,'revision','',0),(376,1,'2022-03-17 11:35:10','2022-03-17 11:35:10','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:35:10','2022-03-17 11:35:10','',74,'http://demoweblinks.in/naishautomation/?p=376',0,'revision','',0),(377,1,'2022-03-17 11:35:11','2022-03-17 11:35:11','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:35:11','2022-03-17 11:35:11','',74,'http://demoweblinks.in/naishautomation/?p=377',0,'revision','',0),(378,1,'2022-03-17 11:36:29','2022-03-17 11:36:29','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:36:29','2022-03-17 11:36:29','',74,'http://demoweblinks.in/naishautomation/?p=378',0,'revision','',0),(379,1,'2022-03-17 11:36:30','2022-03-17 11:36:30','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:36:30','2022-03-17 11:36:30','',74,'http://demoweblinks.in/naishautomation/?p=379',0,'revision','',0),(380,1,'2022-03-17 11:36:31','2022-03-17 11:36:31','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:36:31','2022-03-17 11:36:31','',74,'http://demoweblinks.in/naishautomation/?p=380',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (381,1,'2022-03-17 11:37:06','2022-03-17 11:37:06','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:37:06','2022-03-17 11:37:06','',74,'http://demoweblinks.in/naishautomation/?p=381',0,'revision','',0),(382,1,'2022-03-17 11:37:07','2022-03-17 11:37:07','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:37:07','2022-03-17 11:37:07','',74,'http://demoweblinks.in/naishautomation/?p=382',0,'revision','',0),(383,1,'2022-03-17 11:37:13','2022-03-17 11:37:13','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:37:13','2022-03-17 11:37:13','',74,'http://demoweblinks.in/naishautomation/?p=383',0,'revision','',0),(384,1,'2022-03-17 11:37:34','2022-03-17 11:37:34','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:37:34','2022-03-17 11:37:34','',74,'http://demoweblinks.in/naishautomation/?p=384',0,'revision','',0),(385,1,'2022-03-17 11:37:34','2022-03-17 11:37:34','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:37:34','2022-03-17 11:37:34','',74,'http://demoweblinks.in/naishautomation/?p=385',0,'revision','',0),(386,1,'2022-03-17 11:37:38','2022-03-17 11:37:38','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:37:38','2022-03-17 11:37:38','',74,'http://demoweblinks.in/naishautomation/?p=386',0,'revision','',0),(387,1,'2022-03-17 11:41:23','2022-03-17 11:41:23','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:41:23','2022-03-17 11:41:23','',74,'http://demoweblinks.in/naishautomation/?p=387',0,'revision','',0),(388,1,'2022-03-17 11:41:24','2022-03-17 11:41:24','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n</section><!-- widget-container -->		\n                    <a>\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:41:24','2022-03-17 11:41:24','',74,'http://demoweblinks.in/naishautomation/?p=388',0,'revision','',0),(389,1,'2022-03-17 11:41:25','2022-03-17 11:41:25','<section>\n            <h2>naish auto.</h2>\n        </section>		\n			<section>\n            <h2></h2><h2>One Stop For<br>Automation.</h2>\n        </section>		\n			<section style=\"\" >\n            <img width=\"791\" height=\"393\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/homeentrance02_03-12361.png\" alt=\"demo-attachment-175-homeentrance02_03-12361\" data-ratio=\"2.01\" data-original-w=\"791\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of springA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"646\" height=\"882\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tim-durgan-2P3eh98tY2s-unsplash.png\" alt=\"demo-attachment-174-tim-durgan-2P3eh98tY2s-unsplash\" data-ratio=\"0.73\" data-original-w=\"646\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Join Us</li><li ><a href=\"#\" >TW</a></li><li ><a href=\"#\" >IG</a></li><li ><a href=\"#\" >FB</a></li><li ><a href=\"#\" >LN</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h5>About us</h5><h3>We turn ideas into works of automation</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which</p>\n        </section>		\n                    <a>\nREAD MORE                \n            </a>\n			<section style=\"\" >\n            <img width=\"835\" height=\"729\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash.png\" alt=\"demo-attachment-249-connor-wang-MNz7IGrcEl0-unsplash\" data-ratio=\"1.15\" data-original-w=\"835\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >Beautiful Home</li><li ><a href=\"#\" >Watch Video</a></li></ul></section><!-- widget-container -->		\n			<section>\n            <h2>Our procces</h2>\n        </section>		\n			<section>\n            <h2>Naish Automation</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in automation</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>design perfect solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section style=\"\" >                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-40x48.png\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product1                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-40x48.png\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product2                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-40x48.png\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product3                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-40x48.png\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product4                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-40x48.png\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product5                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\"><img width=\"606\" height=\"726\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-40x48.png\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                             <!--<a href=\"\">-->\n                                            Product6                                       \n                                        <!--   <a href=\"#\">-->\n                                        <!--    -->\n                                        <!--</a>-->\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                        </article>\n</section><!-- widget-container -->		\n                    <a href=\"http://demoweblinks.in/naishautomation/products/\">\nView All Products                \n            </a>\n			<section>\n            <h5>Testimonial</h5><h3>Our Client say.</h3><p>A wonderful serenity has taken possession of my entire soul, like these.</p>\n        </section>		\n			<section style=\"\" ><style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-52 .elementor-element.elementor-element-2bee713 .aux-the-svg{width:100%;}.elementor-52 .elementor-element.elementor-element-2bee713 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-52 .elementor-element.elementor-element-2bee713{left:0px;}body.rtl .elementor-52 .elementor-element.elementor-element-2bee713{right:0px;}.elementor-52 .elementor-element.elementor-element-2bee713{top:-21px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title a, .elementor-52 .elementor-element.elementor-element-9598733 .col-title{color:#2A2A2A !important;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-52 .elementor-element.elementor-element-9598733 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-52 .elementor-element.elementor-element-9598733 .col-title, .elementor-52 .elementor-element.elementor-element-9598733 .col-title a{font-size:16px;}.elementor-52 .elementor-element.elementor-element-9598733 .col-subtitle{font-size:14px;}.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-9598733 */.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::after,.elementor-52 .elementor-element.elementor-element-9598733 .entry-content::before{\n    display: none;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-52 .elementor-element.elementor-element-9598733 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"5088fea\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-84@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		<style>.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title a, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title{color:#2A2A2A !important;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}.elementor-51 .elementor-element.elementor-element-0145697 .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-51 .elementor-element.elementor-element-0145697{left:0px;}body.rtl .elementor-51 .elementor-element.elementor-element-0145697{right:0px;}.elementor-51 .elementor-element.elementor-element-0145697{top:-21px;}@media(max-width:1024px){.elementor-51 .elementor-element.elementor-element-910ee03 .col-title, .elementor-51 .elementor-element.elementor-element-910ee03 .col-title a{font-size:16px;}.elementor-51 .elementor-element.elementor-element-910ee03 .col-subtitle{font-size:14px;}.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-910ee03 */.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::after,.elementor-51 .elementor-element.elementor-element-910ee03 .entry-content::before{\n    display: none;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-51 .elementor-element.elementor-element-910ee03 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"c5eac7f\" data-element_type=\"section\">\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-85.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n		</section>\n		<style>.elementor-53 .elementor-element.elementor-element-e4af37c .aux-widget-container{text-align:center;}body:not(.rtl) .elementor-53 .elementor-element.elementor-element-e4af37c{left:0px;}body.rtl .elementor-53 .elementor-element.elementor-element-e4af37c{right:0px;}.elementor-53 .elementor-element.elementor-element-e4af37c{top:-21px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image img{border-radius:100% 100% 100% 100%;overflow:hidden;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{color:#2A2A2A !important;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-family:\"Heebo\";font-size:18px;font-weight:700;text-transform:capitalize;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title{margin-top:10px;margin-bottom:0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:15px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{color:var( --e-global-color-text );font-family:\"Mukta\";font-size:16px;font-weight:300;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content .entry-content{padding:0px 0px 10px 0px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-widget-testimonial{text-align:center;padding:70px 30px 20px 30px;background-color:var( --e-global-color-accent );box-shadow:0px 6px 35px 0px rgba(0, 0, 0, 0.07058823529411765);}@media(max-width:1024px){.elementor-53 .elementor-element.elementor-element-fd59d90 .col-title, .elementor-53 .elementor-element.elementor-element-fd59d90 .col-title a{font-size:16px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .col-subtitle{font-size:14px;}.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-content{font-size:14px;}}/* Start custom CSS for aux_testimonial, class: .elementor-element-fd59d90 */.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::after{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .entry-content::before{\n    display: none;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-infobox{\n    margin: 0 auto;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-image{\n    width: 80px;\n}\n.elementor-53 .elementor-element.elementor-element-fd59d90 .aux-testimonial-info{\n    text-align: left;\n}/* End custom CSS */</style>		\n							<section data-id=\"4c837aa\" data-element_type=\"section\">\n            <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"68.81\" height=\"52.159\" viewBox=\"0 0 68.81 52.159\">\n  <path id=\"Path_15\" data-name=\"Path 15\" d=\"M79.31-106.513a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9a27.921,27.921,0,0,1,3.5-13.306,46.678,46.678,0,0,1,8.668-11.1,84.625,84.625,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152h1.825a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,79.31-106.513Zm-37.636,0a12.294,12.294,0,0,1-4.41,9.884,14.122,14.122,0,0,1-9.428,3.345q-7.375,0-11.861-4.03-5.474-4.866-5.474-14.9A27.921,27.921,0,0,1,14-125.521a46.679,46.679,0,0,1,8.668-11.1,84.626,84.626,0,0,1,10.949-8.82l4.182,4.79a43.064,43.064,0,0,0-7.907,11.633,23.149,23.149,0,0,0-2.129,9.276l-.076-.532q.228.076.532.152H30.04a10.672,10.672,0,0,1,8.212,3.8A14.1,14.1,0,0,1,41.674-106.513Zm35.2,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,76.877-106.513Zm-37.636,0a11.979,11.979,0,0,0-2.661-8.059,8.277,8.277,0,0,0-6.539-3.117,13.012,13.012,0,0,0-1.939.114,13.576,13.576,0,0,0-2.547.874l-.228-3.041a25.552,25.552,0,0,1,1.977-9.5,39.559,39.559,0,0,1,7.147-11.4l-1.293-1.521a78.7,78.7,0,0,0-9.428,7.755,41.458,41.458,0,0,0-7.679,9.96,26,26,0,0,0-3.117,12.241q0,8.592,4.638,12.85a14.535,14.535,0,0,0,10.264,3.65,11.714,11.714,0,0,0,7.755-2.661A10.05,10.05,0,0,0,39.24-106.513Z\" transform=\"translate(-10.5 145.441)\" fill=\"var(--e-global-color-secondary)\"/>\n</svg>\n			<section style=\"\" >    \n                                A wonderful serenity has taken possession of entire soul, like these sweet mornings of spring which I enjoy with my whole heart. wonderful serenity has taken            \n                    <img width=\"72\" height=\"72\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/Mask-Group-89@2x.png\" alt=\"\" loading=\"lazy\" />            \n                                <h4>alex Janson</h4>\n                                <h5>Designer</h5>\n</section><!-- widget-container -->		\n		</section>\n		</section><!-- widget-container -->		\n			<section>\n            <h2>Portfolio Gallery .</h2>\n        </section>		\n			<a href=\"#\" role=\"button\">\n						View All\n					</a>\n			<section style=\"\" ><ul><li data-filter=\"outdoor-design\" data-category-id=\"7\" ><a href=\"#\">Outdoor Design</a></li></ul><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">\n                                                Product1                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">\n                                                Product2                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">\n                                                Product3                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">\n                                                Product4                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n                         <article >\n                                    <img width=\"400\" height=\"532\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.75\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x200.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x399.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x1021.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1362.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png 400w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1449.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-400x532.png\" />                                \n                                            <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1.png\" data-elementor-open-lightbox = \"no\" data-original-width = \"1100\" data-original-height = \"1283\" data-caption = \"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" >\n                                            </a>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                            </a>\n                                                                        <header>\n                                        <h3>\n                                            <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">\n                                                Product5                                            </a>\n                                        </h3>\n                                    </header>\n                                                                                        <a href=\"#\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                        \n                        </article>\n</section><!-- widget-container -->		\n				0\n							Products\n				0\n							Happy Clients\n				0\n							Clients\n				0\n							Project Launched\n				0\n							Materials\n			<section style=\"\" >\n            <img width=\"143\" height=\"42\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-3@2x.png\" alt=\"demo-attachment-552-client-3@2x\" data-ratio=\"3.4\" data-original-w=\"143\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"109\" height=\"43\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-1@2x.png\" alt=\"demo-attachment-551-client-1@2x\" data-ratio=\"2.53\" data-original-w=\"109\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"103\" height=\"73\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-4@2x.png\" alt=\"demo-attachment-553-client-4@2x\" data-ratio=\"1.41\" data-original-w=\"103\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"135\" height=\"54\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-5@2x.png\" alt=\"demo-attachment-554-client-5@2x\" data-ratio=\"2.5\" data-original-w=\"135\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"117\" height=\"71\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-9@2x.png\" alt=\"demo-attachment-555-client-9@2x\" data-ratio=\"1.65\" data-original-w=\"117\" />            \n</section><!-- widget-container -->		\n			<section style=\"\" >\n            <img width=\"137\" height=\"36\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/client-7@2x.png\" alt=\"demo-attachment-559-client-7@2x\" data-ratio=\"3.81\" data-original-w=\"137\" />            \n</section><!-- widget-container -->','Home','','inherit','closed','closed','','74-revision-v1','','','2022-03-17 11:41:25','2022-03-17 11:41:25','',74,'http://demoweblinks.in/naishautomation/?p=389',0,'revision','',0),(390,1,'2022-03-17 11:43:49','2022-03-17 11:43:49','<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section style=\"\" ><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"56\"\n					data-ulike-nonce=\"fc754bef2c\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_56\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"57\"\n					data-ulike-nonce=\"0e8d5ba0a7\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_57\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"58\"\n					data-ulike-nonce=\"ae2507358b\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_58\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"59\"\n					data-ulike-nonce=\"fbbb6a1972\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_59\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"60\"\n					data-ulike-nonce=\"f3fa569134\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_60\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"61\"\n					data-ulike-nonce=\"fb9692877c\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_61\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-designer/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-designer/\">\n                                            Architectural designer                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"62\"\n					data-ulike-nonce=\"840c931493\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_62\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-drawing/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-drawing/\">\n                                            Architectural drawing                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"63\"\n					data-ulike-nonce=\"f8a13ad951\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_63\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/chartered-architect/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1364-connor-wang-MNz7IGrcEl0-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/chartered-architect/\">\n                                            Chartered architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"65\"\n					data-ulike-nonce=\"a0c551baf5\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_65\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/landscape-architect/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/landscape-architect/\">\n                                            Landscape architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"66\"\n					data-ulike-nonce=\"f2b452be9d\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_66\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/list-of-architects/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1366-tyler-schaefer-bODOLilbwJs-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/list-of-architects/\">\n                                            List of architects                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"67\"\n					data-ulike-nonce=\"bc01228f35\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_67\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architect-like/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1358-volkan-vardar-y7RW7g2izy0-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architect-like/\">\n                                            Architect like                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"68\"\n					data-ulike-nonce=\"0e3537dcd6\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_68\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Products','','inherit','closed','closed','','72-revision-v1','','','2022-03-17 11:43:49','2022-03-17 11:43:49','',72,'http://demoweblinks.in/naishautomation/?p=390',0,'revision','',0),(391,1,'2022-03-17 11:43:50','2022-03-17 11:43:50','<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section style=\"\" ><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/design-role/\">\n                                            Design role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"56\"\n					data-ulike-nonce=\"fc754bef2c\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_56\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/means-of-design/\">\n                                            Means of design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"57\"\n					data-ulike-nonce=\"0e8d5ba0a7\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_57\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/environmental-role/\">\n                                            Environmental role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"58\"\n					data-ulike-nonce=\"ae2507358b\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_58\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/construction-role/\">\n                                            Construction role                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"59\"\n					data-ulike-nonce=\"fbbb6a1972\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_59\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/lighting-design/\">\n                                            Lighting Design                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"60\"\n					data-ulike-nonce=\"f3fa569134\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_60\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/alternate-practice/\">\n                                            Alternate practice                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"61\"\n					data-ulike-nonce=\"fb9692877c\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_61\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-designer/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-designer/\">\n                                            Architectural designer                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"62\"\n					data-ulike-nonce=\"840c931493\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_62\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-drawing/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architectural-drawing/\">\n                                            Architectural drawing                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"63\"\n					data-ulike-nonce=\"f8a13ad951\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_63\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/chartered-architect/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1364-connor-wang-MNz7IGrcEl0-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/connor-wang-MNz7IGrcEl0-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/chartered-architect/\">\n                                            Chartered architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"65\"\n					data-ulike-nonce=\"a0c551baf5\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_65\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/landscape-architect/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/landscape-architect/\">\n                                            Landscape architect                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"66\"\n					data-ulike-nonce=\"f2b452be9d\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_66\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/list-of-architects/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1366-tyler-schaefer-bODOLilbwJs-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/tyler-schaefer-bODOLilbwJs-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/list-of-architects/\">\n                                            List of architects                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"67\"\n					data-ulike-nonce=\"bc01228f35\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_67\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n                        <article >\n                                    <a href=\"http://demoweblinks.in/naishautomation/portfolio/architect-like/\"><img width=\"606\" height=\"726\" alt=\"demo-attachment-1358-volkan-vardar-y7RW7g2izy0-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/volkan-vardar-y7RW7g2izy0-unsplash-1-607x726.png\" /></a>                                \n                                                                <header>\n                                    <h3>\n                                        <a href=\"http://demoweblinks.in/naishautomation/portfolio/architect-like/\">\n                                            Architect like                                        </a>\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"68\"\n					data-ulike-nonce=\"0e3537dcd6\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_68\"></button>			\n                                                                                <a href=\"http://demoweblinks.in/naishautomation/portfolio-cat/outdoor-design/\" title=\"View all posts in Outdoor Design\" rel=\"category\" >Outdoor Design</a>                                    \n                        </article>\n</section><!-- widget-container -->','Products','','inherit','closed','closed','','72-revision-v1','','','2022-03-17 11:43:50','2022-03-17 11:43:50','',72,'http://demoweblinks.in/naishautomation/?p=391',0,'revision','',0),(392,1,'2022-03-17 11:43:50','2022-03-17 11:43:50','<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section style=\"\" ><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">-->\n                                            Product1                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"56\"\n					data-ulike-nonce=\"477bd10ce2\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_56\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">-->\n                                            Product2                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"57\"\n					data-ulike-nonce=\"fb6c1e04ff\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_57\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">-->\n                                            Product3                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"58\"\n					data-ulike-nonce=\"eff0b23ece\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_58\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">-->\n                                            Product4                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"59\"\n					data-ulike-nonce=\"cee1519b74\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_59\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">-->\n                                            Product5                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"60\"\n					data-ulike-nonce=\"018d65b28d\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_60\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\">-->\n                                            Product6                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"61\"\n					data-ulike-nonce=\"ac6b0a21fd\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_61\"></button>			\n                        </article>\n</section><!-- widget-container -->','Products','','inherit','closed','closed','','72-revision-v1','','','2022-03-17 11:43:50','2022-03-17 11:43:50','',72,'http://demoweblinks.in/naishautomation/?p=392',0,'revision','',0),(393,1,'2022-03-17 12:02:46','2022-03-17 12:02:46','<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section style=\"\" ><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">-->\n                                            Product1                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"56\"\n					data-ulike-nonce=\"477bd10ce2\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_56\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">-->\n                                            Product2                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"57\"\n					data-ulike-nonce=\"fb6c1e04ff\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_57\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">-->\n                                            Product3                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"58\"\n					data-ulike-nonce=\"eff0b23ece\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_58\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">-->\n                                            Product4                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"59\"\n					data-ulike-nonce=\"cee1519b74\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_59\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">-->\n                                            Product5                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"60\"\n					data-ulike-nonce=\"018d65b28d\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_60\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\">-->\n                                            Product6                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"61\"\n					data-ulike-nonce=\"ac6b0a21fd\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_61\"></button>			\n                        </article>\n</section><!-- widget-container -->','Portfolio','','inherit','closed','closed','','72-revision-v1','','','2022-03-17 12:02:46','2022-03-17 12:02:46','',72,'http://demoweblinks.in/naishautomation/?p=393',0,'revision','',0),(394,1,'2022-03-17 12:08:29','2022-03-17 12:08:29','<section>\n            <h5>Products</h5><h3>Best and stand out amongst peers</h3>\n        </section>		\n			<section>\n            <h2></h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possessio</p>\n        </section>		\n			<section style=\"\" ><svg width=\"100%\" height=\"100%\" viewBox=\"0 0 42 42\"><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\"></circle><circle r=\"20\" cx=\"21\" cy=\"21\" fill=\"none\" transform=\"rotate(-90 21 21)\"></circle></svg>                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1363-gilles-desjardins-1rBs-8OyxMo-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/gilles-desjardins-1rBs-8OyxMo-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product1/\">-->\n                                            Product1                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"56\"\n					data-ulike-nonce=\"477bd10ce2\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_56\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1362-meric-dagli-KgDkiEzx3cA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/meric-dagli-KgDkiEzx3cA-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product2/\">-->\n                                            Product2                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"57\"\n					data-ulike-nonce=\"fb6c1e04ff\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_57\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1361-jason-leung-poI7DelFiVA-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/jason-leung-poI7DelFiVA-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product3/\">-->\n                                            Product3                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"58\"\n					data-ulike-nonce=\"eff0b23ece\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_58\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1359-ricardo-gomez-angel-U_riwEM5piM-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product4/\">-->\n                                            Product4                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"59\"\n					data-ulike-nonce=\"cee1519b74\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_59\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1360-thai-an-BE6CIwysCvU-unsplash-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/thai-an-BE6CIwysCvU-unsplash-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product5/\">-->\n                                            Product5                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"60\"\n					data-ulike-nonce=\"018d65b28d\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_60\"></button>			\n                        </article>\n                        <article >\n                                    <img width=\"606\" height=\"726\" alt=\"demo-attachment-1365-708_2-35060-1\" data-ratio=\"0.84\" data-original-w=\"1100\" sizes=\"auto\" data-srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-150x180.png 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-300x359.png 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-768x920.png 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1024x1226.png 1024w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png 607w,http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-1090x1305.png 1090w\" data-src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/708_2-35060-1-607x726.png\" />                                \n                                                                <header>\n                                    <h3>\n                                        <!--sonu change start-->\n                                           <a href=\"http://demoweblinks.in/naishautomation/portfolio/product6/\">-->\n                                            Product6                                       \n                                     </a>\n                                        <!--sonu change end-->\n                                    </h3>\n                                </header>\n                                                                		<button type=\"button\"\n					aria-label=\"Like Button\"\n					data-ulike-id=\"61\"\n					data-ulike-nonce=\"ac6b0a21fd\"\n					data-ulike-type=\"post\"\n					data-ulike-template=\"wpulike-heart\"\n					data-ulike-display-likers=\"0\"\n					data-ulike-likers-style=\"popover\"\n					class=\"wp_ulike_btn wp_ulike_put_image wp_post_btn_61\"></button>			\n                        </article>\n</section><!-- widget-container -->','Products','','inherit','closed','closed','','72-revision-v1','','','2022-03-17 12:08:29','2022-03-17 12:08:29','',72,'http://demoweblinks.in/naishautomation/?p=394',0,'revision','',0),(396,1,'2022-03-17 12:20:38','2022-03-17 12:20:38','','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:20:38','2022-03-17 12:20:38','',61,'http://demoweblinks.in/naishautomation/?p=396',0,'revision','',0),(397,1,'2022-03-17 12:20:38','2022-03-17 12:20:38','','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:20:38','2022-03-17 12:20:38','',61,'http://demoweblinks.in/naishautomation/?p=397',0,'revision','',0),(398,1,'2022-03-17 12:20:40','2022-03-17 12:20:40','<section>\n            <h5>Our Services</h5><h3>We are innovative</h3>\n        </section>		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Furniture &amp; Accessories</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Construction</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Architecture</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Design Project</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>3D Animation</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section style=\"\" >        \n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\" />\n</svg>                                                    \n                                <h4>Office design</h4>\n                                        <p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings...</p>                \n                <button   ></button>            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Lets work together!</h2><h5>A wonderful serenity has taken possession of my entire soul</h5>\n        </section>		\n                    <a>\nContact us                \n            </a>\n			<section>\n            <h2>ARchitect</h2>\n        </section>		\n			<section>\n            <h5></h5><h3>Why Choose and Trust Us</h3><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>01</h2>\n        </section>		\n			<section>\n            <h2>10 years exprience</h2><p>A wonderful serenity has taken</p>\n        </section>		\n			<section>\n            <h2>02</h2>\n        </section>		\n			<section>\n            <h2>best team in architect</h2><p>entire soul, like these sweet</p>\n        </section>		\n			<section>\n            <h2>03</h2>\n        </section>		\n			<section>\n            <h2>We Design Solutions</h2><p>possession of my entire soul, like these sweet</p>\n        </section>		\n			<section style=\"\" >\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\" />            \n</section><!-- widget-container -->		\n			<section>\n            <h2>Strategy Planning</h2><p>A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.</p>\n        </section>','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:20:40','2022-03-17 12:20:40','',61,'http://demoweblinks.in/naishautomation/?p=398',0,'revision','',0),(399,1,'2022-03-17 12:22:16','2022-03-17 12:22:16','<section>\n<h5>Our Services</h5>\n<h3>We are innovative</h3>\n</section>\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Furniture &amp; Accessories</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Construction</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Architecture</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Design Project</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>3D Animation</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Office design</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section>\n<h2>Lets work together!</h2>\n<h5>A wonderful serenity has taken possession of my entire soul</h5>\n</section>                    <a>\nContact us\n</a>\n\n<section>\n<h2>ARchitect</h2>\n</section>\n<section>\n<h5></h5>\n<h3>Why Choose and Trust Us</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>\n<section style=\"\">\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\">\n</section><!-- widget-container -->\n\n<section>\n<h2>01</h2>\n</section>\n<section>\n<h2>10 years exprience</h2>\nA wonderful serenity has taken\n\n</section>\n<section>\n<h2>02</h2>\n</section>\n<section>\n<h2>best team in architect</h2>\nentire soul, like these sweet\n\n</section>\n<section>\n<h2>03</h2>\n</section>\n<section>\n<h2>We Design Solutions</h2>\npossession of my entire soul, like these sweet\n\n</section>\n<section style=\"\">\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\">\n</section><!-- widget-container -->\n\n<section>\n<h2>Strategy Planning</h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:22:16','2022-03-17 12:22:16','',61,'http://demoweblinks.in/naishautomation/?p=399',0,'revision','',0),(400,1,'2022-03-17 12:33:27','2022-03-17 12:33:27','','structure__77634','','inherit','open','closed','','structure__77634','','','2022-03-17 12:33:27','2022-03-17 12:33:27','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp',0,'attachment','image/webp',0),(401,1,'2022-03-17 12:33:31','2022-03-17 12:33:31','','motor__53392.1603756808','','inherit','open','closed','','motor__53392-1603756808','','','2022-03-17 12:33:31','2022-03-17 12:33:31','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg',0,'attachment','image/jpeg',0),(402,1,'2022-03-17 12:33:36','2022-03-17 12:33:36','','tracks__42131.1478057120','','inherit','open','closed','','tracks__42131-1478057120','','','2022-03-17 12:33:36','2022-03-17 12:33:36','',0,'http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg',0,'attachment','image/jpeg',0),(403,1,'2022-03-17 12:40:05','2022-03-17 12:40:05','<section>\n<h5>Our Services</h5>\n<h3>We are innovative</h3>\n</section>\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Furniture &amp; Accessories</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Construction</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Architecture</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Design Project</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>3D Animation</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Office design</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section>\n<h2>Lets work together!</h2>\n<h5>A wonderful serenity has taken possession of my entire soul</h5>\n</section>                    <a>\nContact us\n</a>\n\n<section>\n<h2>ARchitect</h2>\n</section>\n<section>\n<h5></h5>\n<h3>Why Choose and Trust Us</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>\n<section style=\"\">\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\">\n</section><!-- widget-container -->\n\n<section>\n<h2>01</h2>\n</section>\n<section>\n<h2>10 years exprience</h2>\nA wonderful serenity has taken\n\n</section>\n<section>\n<h2>02</h2>\n</section>\n<section>\n<h2>best team in architect</h2>\nentire soul, like these sweet\n\n</section>\n<section>\n<h2>03</h2>\n</section>\n<section>\n<h2>We Design Solutions</h2>\npossession of my entire soul, like these sweet\n\n</section>\n<section style=\"\">\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\">\n</section><!-- widget-container -->\n\n<section>\n<h2>Strategy Planning</h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:40:05','2022-03-17 12:40:05','',61,'http://demoweblinks.in/naishautomation/?p=403',0,'revision','',0),(404,1,'2022-03-17 12:40:05','2022-03-17 12:40:05','<section>\n<h5>Our Services</h5>\n<h3>We are innovative</h3>\n</section>\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M53.789-30a9.257,9.257,0,0,0-4.57,1.172L51.094-41.25a16.072,16.072,0,0,0-3.75-13.125A15.676,15.676,0,0,0,35.039-60H24.961a15.676,15.676,0,0,0-12.3,5.625A16.072,16.072,0,0,0,8.906-41.25l1.875,12.422A9.258,9.258,0,0,0,6.211-30a5.986,5.986,0,0,0-4.395,1.816A5.986,5.986,0,0,0,0-23.789,6.018,6.018,0,0,0,3.867-17.93a1.543,1.543,0,0,1,1.172,1.641v5.039a8.566,8.566,0,0,0,2.52,6.211,8.274,8.274,0,0,0,6.152,2.578v1.172A1.139,1.139,0,0,0,15,0a1.139,1.139,0,0,0,1.289-1.289V-2.461H43.711v1.172A1.139,1.139,0,0,0,45,0a1.139,1.139,0,0,0,1.289-1.289V-2.461a8.274,8.274,0,0,0,6.152-2.578,8.566,8.566,0,0,0,2.52-6.211v-5.039a1.543,1.543,0,0,1,1.172-1.641A6.018,6.018,0,0,0,60-23.789a5.986,5.986,0,0,0-1.816-4.395A5.986,5.986,0,0,0,53.789-30ZM11.367-41.6a13.382,13.382,0,0,1,3.164-11.133,13.112,13.112,0,0,1,10.43-4.8H35.039a13.112,13.112,0,0,1,10.43,4.8,13.208,13.208,0,0,1,3.164,11.016L46.289-26.6a9.685,9.685,0,0,0-2.578,6.563v1.875Q38.672-20.039,30-20.039T16.289-18.164v-1.875A9.685,9.685,0,0,0,13.711-26.6ZM55.2-20.273a4.064,4.064,0,0,0-2.7,3.984v5.039a5.986,5.986,0,0,1-1.816,4.395,5.986,5.986,0,0,1-4.395,1.816H13.711A5.986,5.986,0,0,1,9.316-6.855,5.986,5.986,0,0,1,7.5-11.25v-5.039a4.064,4.064,0,0,0-2.7-3.984,3.478,3.478,0,0,1-2.344-3.516,3.6,3.6,0,0,1,1.113-2.637,3.6,3.6,0,0,1,2.637-1.113,7.151,7.151,0,0,1,5.332,2.227,7.3,7.3,0,0,1,2.168,5.273v6.094L15.7-15.234q3.75-2.227,14.3-2.227a57.213,57.213,0,0,1,8.262.527,20.946,20.946,0,0,1,4.863,1.113l1.172.586,1.992,1.289v-6.094a7.3,7.3,0,0,1,2.168-5.273,7.151,7.151,0,0,1,5.332-2.227,3.6,3.6,0,0,1,2.637,1.113,3.6,3.6,0,0,1,1.113,2.637A3.478,3.478,0,0,1,55.2-20.273ZM22.852-34.1a1.267,1.267,0,0,0,.938.352,1.124,1.124,0,0,0,.82-.352l1.055-1.055A4.453,4.453,0,0,0,30-32.461a4.453,4.453,0,0,0,4.336-2.7L35.391-34.1a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352,1.146,1.146,0,0,0,0-1.758L35.508-37.5l1.641-1.641a1.146,1.146,0,0,0,0-1.758,1.146,1.146,0,0,0-1.758,0l-1.055,1.055A4.453,4.453,0,0,0,30-42.539a4.453,4.453,0,0,0-4.336,2.7L24.609-40.9a1.146,1.146,0,0,0-1.758,0,1.146,1.146,0,0,0,0,1.758L24.492-37.5l-1.641,1.641A1.146,1.146,0,0,0,22.852-34.1Zm5.391-5.156a2.385,2.385,0,0,1,1.758-.7,2.385,2.385,0,0,1,1.758.7,2.385,2.385,0,0,1,.7,1.758,2.385,2.385,0,0,1-.7,1.758,2.385,2.385,0,0,1-1.758.7,2.385,2.385,0,0,1-1.758-.7,2.385,2.385,0,0,1-.7-1.758A2.385,2.385,0,0,1,28.242-39.258Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Furniture &amp; Accessories</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"57.656\" height=\"57.539\" viewBox=\"0 0 57.656 57.539\">\n  <path d=\"M53.789-51.211v-6.328l-1.055.352q-.7.234-2.461,1.055t-3.281,1.7a21.057,21.057,0,0,0-3.105,2.227,9.558,9.558,0,0,0-2.344,2.813,5.579,5.579,0,0,0-.527,3.34,7.706,7.706,0,0,0,1.875,3.867l-2.93,2.93a22.132,22.132,0,0,0-15-5.742A21.755,21.755,0,0,0,9.082-38.437,21.6,21.6,0,0,0,2.461-22.5,22.132,22.132,0,0,0,8.2-7.5L2.813-2.109a1.058,1.058,0,0,0,0,1.758A1.558,1.558,0,0,0,3.75,0a1.558,1.558,0,0,0,.938-.352L9.961-5.742A22.132,22.132,0,0,0,24.961,0a22.132,22.132,0,0,0,15-5.742h.117L45.352-.352A1.267,1.267,0,0,0,46.289,0a1.124,1.124,0,0,0,.82-.352,1.058,1.058,0,0,0,0-1.758L41.836-7.5h-.117a21.577,21.577,0,0,0,5.742-15,21.577,21.577,0,0,0-5.742-15l2.93-2.93a7.265,7.265,0,0,0,4.688,1.992q2.93,0,5.625-3.164a20.8,20.8,0,0,0,3.867-6.445L60-51.211Zm-2.578,0v.7L48.75-48.047v-4.57a12.027,12.027,0,0,1,1.172-.645l1.289-.645Zm-7.734,3.75a8.555,8.555,0,0,1,2.813-3.516v5.508l-1.641,1.523A5.306,5.306,0,0,1,43.477-47.461ZM45-22.5A19.372,19.372,0,0,1,39.141-8.379a19.219,19.219,0,0,1-14.18,5.918A19.179,19.179,0,0,1,10.9-8.32,19.315,19.315,0,0,1,5.039-22.5,19.315,19.315,0,0,1,10.9-36.68a19.179,19.179,0,0,1,14.063-5.859A19.767,19.767,0,0,1,38.2-37.5l-3.516,3.516A14.462,14.462,0,0,0,24.961-37.5a14.452,14.452,0,0,0-10.605,4.395A14.452,14.452,0,0,0,9.961-22.5a14.452,14.452,0,0,0,4.395,10.605A14.452,14.452,0,0,0,24.961-7.5a14.452,14.452,0,0,0,10.605-4.395A14.452,14.452,0,0,0,39.961-22.5a14.751,14.751,0,0,0-3.516-9.727l3.516-3.516A19.2,19.2,0,0,1,45-22.5Zm-15,0a4.863,4.863,0,0,1-1.465,3.574,4.863,4.863,0,0,1-3.574,1.465A4.728,4.728,0,0,1,21.5-18.926,4.863,4.863,0,0,1,20.039-22.5,4.863,4.863,0,0,1,21.5-26.074a4.728,4.728,0,0,1,3.457-1.465,5.834,5.834,0,0,1,2.578.7l-1.875,1.875h-.7a2.446,2.446,0,0,0-1.7.7A2.293,2.293,0,0,0,22.5-22.5a2.293,2.293,0,0,0,.762,1.758,2.446,2.446,0,0,0,1.7.7,2.586,2.586,0,0,0,1.816-.7,2.293,2.293,0,0,0,.762-1.758.9.9,0,0,0-.117-.352v-.234L29.3-25.078A5.342,5.342,0,0,1,30-22.5Zm-.7-6.094A6.721,6.721,0,0,0,24.961-30a7.208,7.208,0,0,0-5.273,2.227A7.208,7.208,0,0,0,17.461-22.5a7.208,7.208,0,0,0,2.227,5.273A7.208,7.208,0,0,0,24.961-15a7.151,7.151,0,0,0,5.332-2.227A7.3,7.3,0,0,0,32.461-22.5a6.721,6.721,0,0,0-1.406-4.336l3.633-3.516A11.955,11.955,0,0,1,37.5-22.5a12.069,12.069,0,0,1-3.691,8.848,12.069,12.069,0,0,1-8.848,3.691,11.877,11.877,0,0,1-8.789-3.691A12.167,12.167,0,0,1,12.539-22.5a12.167,12.167,0,0,1,3.633-8.848,11.877,11.877,0,0,1,8.789-3.691,12.416,12.416,0,0,1,7.969,2.813ZM49.336-40.9a4.982,4.982,0,0,1-2.93-1.289l6.563-6.562h3.4Q52.852-40.9,49.336-40.9Z\" transform=\"translate(-2.344 57.539)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Construction</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60.117\" height=\"56.719\" viewBox=\"0 0 60.117 56.719\">\n  <path d=\"M51.211-26.25q-1.172,0-1.172,1.289v22.5H37.5V-18.75h-15V-2.461H9.961V-26.25q0-1.289-1.172-1.289A1.139,1.139,0,0,0,7.5-26.25V0H24.961V-16.289H35.039V0H52.5V-24.961A1.139,1.139,0,0,0,51.211-26.25Zm8.438-2.109L30-56.719.352-28.359a1.146,1.146,0,0,0,0,1.758,1.146,1.146,0,0,0,1.758,0L30-53.32,57.891-26.6a1.124,1.124,0,0,0,.82.352,1.267,1.267,0,0,0,.938-.352A1.146,1.146,0,0,0,59.648-28.359ZM39.961-50.039h7.5v7.5A1.139,1.139,0,0,0,48.75-41.25a1.139,1.139,0,0,0,1.289-1.289V-52.5H39.961q-1.172,0-1.172,1.289A1.036,1.036,0,0,0,39.961-50.039Z\" transform=\"translate(0.059 56.719)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Architecture</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 60 60\">\n  <path d=\"M60-47.461V-60H47.461v5.039H12.539V-60H0v12.539H6.211v34.922H0V0H12.539V-5.039H47.461V0H60V-12.539H54.961V-47.461ZM50.039-57.539h7.5v7.5h-7.5Zm-47.578,0h7.5v7.5h-7.5Zm7.5,55.078h-7.5v-7.5h7.5Zm47.578,0h-7.5v-7.5h7.5ZM52.5-12.539H47.461V-7.5H12.539v-5.039H8.789V-47.461h3.75V-52.5H47.461v5.039H52.5Z\" transform=\"translate(0 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Design Project</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>3D Animation</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                                                                <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"47.461\" height=\"60\" viewBox=\"0 0 47.461 60\">\n  <path d=\"M53.789-60H36.211q-1.172,0-1.172,1.289V-1.289Q35.039,0,36.211,0H53.789q1.172,0,1.172-1.289V-58.711Q54.961-60,53.789-60ZM52.5-2.461h-15v-7.5h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-4.922h5.039v-2.578H37.5v-7.5h15ZM17.344-56.953a1.234,1.234,0,0,0-1.055-.469,1.234,1.234,0,0,0-1.055.469L7.734-45.7A1.8,1.8,0,0,0,7.5-45V-8.789A6.182,6.182,0,0,0,9.316-4.336a5.893,5.893,0,0,0,4.395,1.875H18.75a5.893,5.893,0,0,0,4.395-1.875,6.182,6.182,0,0,0,1.816-4.453V-45a1.632,1.632,0,0,0-.117-.7ZM16.289-40.43a5.027,5.027,0,0,0,1.172.938v22.031H15V-39.492A4.946,4.946,0,0,0,16.289-40.43Zm-3.75,22.969H9.961V-39.492a5.342,5.342,0,0,0,2.578.7ZM9.961-15H22.5v2.461H9.961Zm10.078-2.461V-38.789a4.332,4.332,0,0,0,2.461-.7v22.031Zm-3.75-36.562,1.758,2.813H14.414ZM9.961-44.648l2.813-4.1H19.8l2.7,4.1v.938a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7Q17.461-45,16.289-45A1.139,1.139,0,0,0,15-43.711a2.353,2.353,0,0,1-.762,1.7,2.353,2.353,0,0,1-1.7.762,2.48,2.48,0,0,1-1.816-.762,2.353,2.353,0,0,1-.762-1.7ZM18.75-5.039H13.711a3.6,3.6,0,0,1-2.637-1.113A3.6,3.6,0,0,1,9.961-8.789V-9.961H22.5v1.172a3.7,3.7,0,0,1-1.055,2.637A3.55,3.55,0,0,1,18.75-5.039Z\" transform=\"translate(-7.5 60)\" fill=\"var(--e-global-color-primary)\"></path>\n</svg>\n<h4>Office design</h4>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings...\n\n<button></button>\n</section><!-- widget-container -->\n\n<section>\n<h2>Lets work together!</h2>\n<h5>A wonderful serenity has taken possession of my entire soul</h5>\n</section>                    <a>\nContact us\n</a>\n\n<section>\n<h2>ARchitect</h2>\n</section>\n<section>\n<h5></h5>\n<h3>Why Choose and Trust Us</h3>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>\n<section style=\"\">\n            <img width=\"706\" height=\"602\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/ricardo-gomez-angel-U_riwEM5piM-unsplash.png\" alt=\"demo-attachment-651-ricardo-gomez-angel-U_riwEM5piM-unsplash\" data-ratio=\"1.17\" data-original-w=\"706\">\n</section><!-- widget-container -->\n\n<section>\n<h2>01</h2>\n</section>\n<section>\n<h2>10 years exprience</h2>\nA wonderful serenity has taken\n\n</section>\n<section>\n<h2>02</h2>\n</section>\n<section>\n<h2>best team in architect</h2>\nentire soul, like these sweet\n\n</section>\n<section>\n<h2>03</h2>\n</section>\n<section>\n<h2>We Design Solutions</h2>\npossession of my entire soul, like these sweet\n\n</section>\n<section style=\"\">\n            <img width=\"476\" height=\"390\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2020/10/bckfwd-oB1EJLokN3E-unsplash.png\" alt=\"demo-attachment-670-bckfwd-oB1EJLokN3E-unsplash\" data-ratio=\"1.22\" data-original-w=\"476\">\n</section><!-- widget-container -->\n\n<section>\n<h2>Strategy Planning</h2>\nA wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.A wonderful serenity has taken possession of my entire soul, like these sweet mornings of spring which I enjoy with my whole heart.\n\n</section>','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:40:05','2022-03-17 12:40:05','',61,'http://demoweblinks.in/naishautomation/?p=404',0,'revision','',0),(405,1,'2022-03-17 12:40:05','2022-03-17 12:40:05','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-au82a5ea1d .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:40:05','2022-03-17 12:40:05','',61,'http://demoweblinks.in/naishautomation/?p=405',0,'revision','',0),(406,1,'2022-03-17 12:40:25','2022-03-17 12:40:25','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-au82a5ea1d .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:40:25','2022-03-17 12:40:25','',61,'http://demoweblinks.in/naishautomation/?p=406',0,'revision','',0),(407,1,'2022-03-17 12:40:25','2022-03-17 12:40:25','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-au82a5ea1d .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:40:25','2022-03-17 12:40:25','',61,'http://demoweblinks.in/naishautomation/?p=407',0,'revision','',0),(408,1,'2022-03-17 12:40:26','2022-03-17 12:40:26','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-au345c3c3a .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:40:26','2022-03-17 12:40:26','',61,'http://demoweblinks.in/naishautomation/?p=408',0,'revision','',0),(409,1,'2022-03-17 12:40:43','2022-03-17 12:40:43','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-au345c3c3a .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:40:43','2022-03-17 12:40:43','',61,'http://demoweblinks.in/naishautomation/?p=409',0,'revision','',0),(410,1,'2022-03-17 12:40:43','2022-03-17 12:40:43','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-au345c3c3a .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:40:43','2022-03-17 12:40:43','',61,'http://demoweblinks.in/naishautomation/?p=410',0,'revision','',0),(411,1,'2022-03-17 12:40:43','2022-03-17 12:40:43','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-au83bdb640 .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:40:43','2022-03-17 12:40:43','',61,'http://demoweblinks.in/naishautomation/?p=411',0,'revision','',0),(412,1,'2022-03-17 12:41:30','2022-03-17 12:41:30','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-au83bdb640 .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:41:30','2022-03-17 12:41:30','',61,'http://demoweblinks.in/naishautomation/?p=412',0,'revision','',0),(413,1,'2022-03-17 12:41:30','2022-03-17 12:41:30','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-au83bdb640 .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:41:30','2022-03-17 12:41:30','',61,'http://demoweblinks.in/naishautomation/?p=413',0,'revision','',0),(414,1,'2022-03-17 12:41:31','2022-03-17 12:41:31','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-auf01ccefb .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 12:41:31','2022-03-17 12:41:31','',61,'http://demoweblinks.in/naishautomation/?p=414',0,'revision','',0),(417,1,'2022-03-17 12:45:24','2022-03-17 12:45:24','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}\n\n.elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line {\n    border-color: #ffffff;\n}\n.type-portfolio.aux-side-top .entry-side {\n	margin: 120px auto;align-content\n}\n','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-17 12:45:24','2022-03-17 12:45:24','',54,'http://demoweblinks.in/naishautomation/?p=417',0,'revision','',0),(419,1,'2022-03-17 12:48:20','2022-03-17 12:48:20','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}\n\n.elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line {\n    border-color: #ffffff;\n}\n.type-portfolio.aux-side-top  {\n	margin: 120px auto;align-content\n}\n','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-17 12:48:20','2022-03-17 12:48:20','',54,'http://demoweblinks.in/naishautomation/?p=419',0,'revision','',0),(420,1,'2022-03-17 14:17:14','2022-03-17 14:17:14','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-auf01ccefb .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 14:17:14','2022-03-17 14:17:14','',61,'http://demoweblinks.in/naishautomation/?p=420',0,'revision','',0),(421,1,'2022-03-17 14:17:14','2022-03-17 14:17:14','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-auf01ccefb .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 14:17:14','2022-03-17 14:17:14','',61,'http://demoweblinks.in/naishautomation/?p=421',0,'revision','',0),(422,1,'2022-03-17 14:17:14','2022-03-17 14:17:14','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-aucbd385dc .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->		\n			<section style=\"\" >\n                    <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\" target=\"_self\" rel=\"noopener\">\n                        <img width=\"800\" height=\"584\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp 800w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,800px\" />                    \n                    </a>\n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 14:17:14','2022-03-17 14:17:14','',61,'http://demoweblinks.in/naishautomation/?p=422',0,'revision','',0),(423,1,'2022-03-17 14:19:15','2022-03-17 14:19:15','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-aucbd385dc .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->		\n			<section style=\"\" >\n                    <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\" target=\"_self\" rel=\"noopener\">\n                        <img width=\"800\" height=\"584\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp 800w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,800px\" />                    \n                    </a>\n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 14:19:15','2022-03-17 14:19:15','',61,'http://demoweblinks.in/naishautomation/?p=423',0,'revision','',0),(424,1,'2022-03-17 14:19:15','2022-03-17 14:19:15','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-aucbd385dc .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->		\n			<section style=\"\" >\n                    <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\" target=\"_self\" rel=\"noopener\">\n                        <img width=\"800\" height=\"584\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp 800w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,800px\" />                    \n                    </a>\n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 14:19:15','2022-03-17 14:19:15','',61,'http://demoweblinks.in/naishautomation/?p=424',0,'revision','',0),(425,1,'2022-03-17 14:19:15','2022-03-17 14:19:15','<section style=\"\" >    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n    <figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n                        <img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\" />                </a>\n                </figure>\n</section><!-- widget-container --><style>.aux-parent-aua878d028 .aux-frame-ratio { padding-bottom:75% }</style>		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li><li >5YEARS WARRANTY</li><li >DUAL CHANNEL</li><li >HEAVY TRACK</li><li >SPECIFICATIONS</li><li >TRACK LENGTH UPTO 20 METERS</li><li >HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li><li >DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li><li >SILENT, STABLE AND DURABLE</li><li >RUNNER</li><li >&TRACK</li><li >32mm.</li><li >127mm</li><li >CONNECTIVITY</li><li >WIRELESS REMOTE</li><li >WIRELESS WALLSWTICH</li><li >WIRED WALLSWITCH</li><li >THIRDPARTY AUTOMATION</li><li >TO350</li></ul></section><!-- widget-container -->		\n			<section style=\"\" >\n                    <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\" target=\"_self\" rel=\"noopener\">\n                        <img width=\"800\" height=\"584\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp 800w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,800px\" />                    \n                    </a>\n</section><!-- widget-container -->		\n			<section style=\"\" ><ul ><li >POWERFULL</li><li >MOTOR</li><li >LARGETORQUE</li><li >SPEED ADJUSTABLE</li><li >LOAD CAPACITY UPTO 300KG</li></ul></section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-17 14:19:15','2022-03-17 14:19:15','',61,'http://demoweblinks.in/naishautomation/?p=425',0,'revision','',0),(426,1,'2022-03-18 03:58:13','2022-03-18 03:58:13','<section style=\"\">\n<figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n<img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\">                </a></figure>\n<figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n<img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\">                </a></figure>\n<figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n<img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\">                </a></figure>\n</section><!-- widget-container -->\n\n<style>.aux-parent-aua878d028 .aux-frame-ratio { padding-bottom:75% }</style>\n<section style=\"\">\n<ul>\n 	<li>POWERFULL</li>\n 	<li>MOTOR</li>\n 	<li>LARGETORQUE</li>\n 	<li>SPEED ADJUSTABLE</li>\n 	<li>LOAD CAPACITY UPTO 300KG</li>\n 	<li>5YEARS WARRANTY</li>\n 	<li>DUAL CHANNEL</li>\n 	<li>HEAVY TRACK</li>\n 	<li>SPECIFICATIONS</li>\n 	<li>TRACK LENGTH UPTO 20 METERS</li>\n 	<li>HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li>\n 	<li>DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li>\n 	<li>SILENT, STABLE AND DURABLE</li>\n 	<li>RUNNER</li>\n 	<li>&amp;TRACK</li>\n 	<li>32mm.</li>\n 	<li>127mm</li>\n 	<li>CONNECTIVITY</li>\n 	<li>WIRELESS REMOTE</li>\n 	<li>WIRELESS WALLSWTICH</li>\n 	<li>WIRED WALLSWITCH</li>\n 	<li>THIRDPARTY AUTOMATION</li>\n 	<li>TO350</li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                    <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\" target=\"_self\" rel=\"noopener\">\n<img width=\"800\" height=\"584\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp 800w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,800px\">\n</a>\n</section><!-- widget-container -->\n\n<section style=\"\">\n<ul>\n 	<li>POWERFULL</li>\n 	<li>MOTOR</li>\n 	<li>LARGETORQUE</li>\n 	<li>SPEED ADJUSTABLE</li>\n 	<li>LOAD CAPACITY UPTO 300KG</li>\n</ul>\n</section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-18 03:58:13','2022-03-18 03:58:13','',61,'https://demoweblinks.in/naishautomation/?p=426',0,'revision','',0),(427,1,'2022-03-18 04:18:11','2022-03-18 04:18:11','<section style=\"\">\n<figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n<img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\">                </a></figure>\n<figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n<img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\">                </a></figure>\n<figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n<img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\">                </a></figure>\n</section><!-- widget-container -->\n\n<style>.aux-parent-aua878d028 .aux-frame-ratio { padding-bottom:75% }</style>\n<section style=\"\">\n<ul>\n 	<li>POWERFULL</li>\n 	<li>MOTOR</li>\n 	<li>LARGETORQUE</li>\n 	<li>SPEED ADJUSTABLE</li>\n 	<li>LOAD CAPACITY UPTO 300KG</li>\n 	<li>5YEARS WARRANTY</li>\n 	<li>DUAL CHANNEL</li>\n 	<li>HEAVY TRACK</li>\n 	<li>SPECIFICATIONS</li>\n 	<li>TRACK LENGTH UPTO 20 METERS</li>\n 	<li>HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li>\n 	<li>DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li>\n 	<li>SILENT, STABLE AND DURABLE</li>\n 	<li>RUNNER</li>\n 	<li>&amp;TRACK</li>\n 	<li>32mm.</li>\n 	<li>127mm</li>\n 	<li>CONNECTIVITY</li>\n 	<li>WIRELESS REMOTE</li>\n 	<li>WIRELESS WALLSWTICH</li>\n 	<li>WIRED WALLSWITCH</li>\n 	<li>THIRDPARTY AUTOMATION</li>\n 	<li>TO350</li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                    <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\" target=\"_self\" rel=\"noopener\">\n<img width=\"800\" height=\"584\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp 800w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,800px\">\n</a>\n</section><!-- widget-container -->\n\n<section style=\"\">\n<ul>\n 	<li>POWERFULL</li>\n 	<li>MOTOR</li>\n 	<li>LARGETORQUE</li>\n 	<li>SPEED ADJUSTABLE</li>\n 	<li>LOAD CAPACITY UPTO 300KG</li>\n</ul>\n</section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-18 04:18:11','2022-03-18 04:18:11','',61,'https://demoweblinks.in/naishautomation/?p=427',0,'revision','',0),(428,1,'2022-03-18 04:18:11','2022-03-18 04:18:11','<section style=\"\">\n<figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\">\n<img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-790x790.webp 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\">                </a></figure>\n<figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"756\" data-caption=\"motor__53392.1603756808\">\n<img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg\" alt=\"motor__53392.1603756808\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-768x756.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/motor__53392.1603756808-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\">                </a></figure>\n<figure>\n                <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120.jpg\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"781\" data-caption=\"tracks__42131.1478057120\">\n<img width=\"300\" height=\"300\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg\" alt=\"tracks__42131.1478057120\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-150x150.jpg 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-768x768.jpg 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-300x300.jpg 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/tracks__42131.1478057120-790x790.jpg 790w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:767px) 100vw,(min-width:768px) and (max-width:1025px) 50vw,513px\">                </a></figure>\n</section><!-- widget-container -->\n\n<style>.aux-parent-aua878d028 .aux-frame-ratio { padding-bottom:75% }</style>\n<section style=\"\">\n<ul>\n 	<li>POWERFULL</li>\n 	<li>MOTOR</li>\n 	<li>LARGETORQUE</li>\n 	<li>SPEED ADJUSTABLE</li>\n 	<li>LOAD CAPACITY UPTO 300KG</li>\n 	<li>5YEARS WARRANTY</li>\n 	<li>DUAL CHANNEL</li>\n 	<li>HEAVY TRACK</li>\n 	<li>SPECIFICATIONS</li>\n 	<li>TRACK LENGTH UPTO 20 METERS</li>\n 	<li>HEAVY DUTY METALRUNNERSWITH DUAL BEARING</li>\n 	<li>DUAL CHANNEL HEAVY TRACKFOR EASY OVER LAPPING</li>\n 	<li>SILENT, STABLE AND DURABLE</li>\n 	<li>RUNNER</li>\n 	<li>&amp;TRACK</li>\n 	<li>32mm.</li>\n 	<li>127mm</li>\n 	<li>CONNECTIVITY</li>\n 	<li>WIRELESS REMOTE</li>\n 	<li>WIRELESS WALLSWTICH</li>\n 	<li>WIRED WALLSWITCH</li>\n 	<li>THIRDPARTY AUTOMATION</li>\n 	<li>TO350</li>\n</ul>\n</section><!-- widget-container -->\n\n<section style=\"\">\n                    <a href=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" data-elementor-open-lightbox=\"no\" data-original-width=\"800\" data-original-height=\"584\" data-caption=\"structure__77634\" target=\"_self\" rel=\"noopener\">\n<img width=\"800\" height=\"584\" src=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp\" alt=\"structure__77634\" srcset=\"http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-150x150.webp 150w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-300x300.webp 300w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634-768x584.webp 768w,http://demoweblinks.in/naishautomation/wp-content/uploads/2022/03/structure__77634.webp 800w\" data-ratio=\"1\" data-original-w=\"800\" sizes=\"(max-width:479px) 480px,(max-width:767px) 768px,(max-width:1023px) 1024px,800px\">\n</a>\n</section><!-- widget-container -->\n\n<section style=\"\">\n<ul>\n 	<li>POWERFULL</li>\n 	<li>MOTOR</li>\n 	<li>LARGETORQUE</li>\n 	<li>SPEED ADJUSTABLE</li>\n 	<li>LOAD CAPACITY UPTO 300KG</li>\n</ul>\n</section><!-- widget-container -->','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-18 04:18:11','2022-03-18 04:18:11','',61,'https://demoweblinks.in/naishautomation/?p=428',0,'revision','',0),(429,1,'2022-03-18 04:18:11','2022-03-18 04:18:11','','Product6','','inherit','closed','closed','','61-revision-v1','','','2022-03-18 04:18:11','2022-03-18 04:18:11','',61,'https://demoweblinks.in/naishautomation/?p=429',0,'revision','',0),(435,1,'2022-03-18 12:52:46','2022-03-18 12:52:46','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}\n\n.elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line {\n    border-color: #ffffff;\n}\n.type-portfolio.aux-side-top  {\n	margin: 120px auto;align-content\n}\n\n.single-portfolio .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line{\n	    border-color: #000;\n}\n','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-18 12:52:46','2022-03-18 12:52:46','',54,'https://demoweblinks.in/naishautomation/?p=435',0,'revision','',0),(437,1,'2022-03-18 12:53:28','2022-03-18 12:53:28','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}\n\n.elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line {\n    border-color: #ffffff;\n}\n.type-portfolio.aux-side-top  {\n	margin: 120px auto;align-content\n}\n\n.single-portfolio > .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line{\n	    border-color: #000;\n}\n','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-18 12:53:28','2022-03-18 12:53:28','',54,'https://demoweblinks.in/naishautomation/?p=437',0,'revision','',0),(439,1,'2022-03-18 12:54:33','2022-03-18 12:54:33','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}\n\n.elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line {\n    border-color: #ffffff;\n}\n.type-portfolio.aux-side-top  {\n	margin: 120px auto;align-content\n}\n\n.single-portfolio .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line{\n	    border-color: #000;\n}\n','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-18 12:54:33','2022-03-18 12:54:33','',54,'https://demoweblinks.in/naishautomation/?p=439',0,'revision','',0),(441,1,'2022-03-18 12:57:44','2022-03-18 12:57:44','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.home .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}\n\n.elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line {\n    border-color: #ffffff;\n}\n.type-portfolio.aux-side-top  {\n	margin: 120px auto;align-content\n}\n\n.single-portfolio .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line{\n	    border-color: #000;\n}\n','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-18 12:57:44','2022-03-18 12:57:44','',54,'https://demoweblinks.in/naishautomation/?p=441',0,'revision','',0),(443,1,'2022-03-18 12:58:01','2022-03-18 12:58:01','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}\n\n.home .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line {\n    border-color: #ffffff;\n}\n.type-portfolio.aux-side-top  {\n	margin: 120px auto;align-content\n}\n\n\n','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-18 12:58:01','2022-03-18 12:58:01','',54,'https://demoweblinks.in/naishautomation/?p=443',0,'revision','',0),(445,1,'2022-03-18 12:58:51','2022-03-18 12:58:51','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}\n\n.home > .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:before, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger:after, .elementor-76 .elementor-element.elementor-element-4cd48f0 .aux-burger .mid-line {\n    border-color: #ffffff;\n}\n.type-portfolio.aux-side-top  {\n	margin: 120px auto;align-content\n}\n\n\n','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-18 12:58:51','2022-03-18 12:58:51','',54,'https://demoweblinks.in/naishautomation/?p=445',0,'revision','',0),(447,1,'2022-03-18 12:59:09','2022-03-18 12:59:09','.elementor-74 .elementor-element.elementor-element-8609713{\n	background-color:#8f1417;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-divider:after{\n	background-color:#ffff;\n}\n\n.elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:before, .elementor-73 .elementor-element.elementor-element-0d539a8 .aux-modern-heading-primary:after{\n	background-color:#ffff;\n}\n\n\n.type-portfolio.aux-side-top  {\n	margin: 120px auto;align-content\n}\n\n\n','phlox-pro','','inherit','closed','closed','','54-revision-v1','','','2022-03-18 12:59:09','2022-03-18 12:59:09','',54,'https://demoweblinks.in/naishautomation/?p=447',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (7,2,0),(51,2,0),(51,4,0),(52,2,0),(52,4,0),(53,2,0),(53,4,0),(56,5,0),(56,6,0),(56,7,0),(57,5,0),(57,6,0),(57,7,0),(58,5,0),(58,6,0),(58,7,0),(59,5,0),(59,6,0),(59,7,0),(60,5,0),(60,6,0),(60,7,0),(61,5,0),(61,6,0),(61,7,0),(69,8,0),(75,2,0),(76,2,0),(76,9,0),(77,10,0),(78,10,0),(79,10,0),(80,10,0),(81,10,0),(82,2,0),(90,2,0),(112,2,0),(114,11,0),(118,2,0),(129,2,0),(132,2,0),(134,2,0),(363,10,0),(364,10,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'elementor_library_type','',0,13),(3,3,'portfolio-cat','',0,0),(4,4,'elementor_library_type','',0,3),(5,5,'portfolio-tag','',0,6),(6,6,'portfolio-filter','',0,6),(7,7,'portfolio-cat','',0,6),(8,8,'elementor_library_type','',0,1),(9,9,'elementor_library_type','',0,1),(10,10,'nav_menu','',0,7),(11,11,'wp_theme','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'page','page',0),(3,'Uncategorized','uncategorized',0),(4,'section','section',0),(5,'uncategorized','uncategorized',0),(6,'uncategorized','uncategorized',0),(7,'Outdoor Design','outdoor-design',0),(8,'footer','footer',0),(9,'header','header',0),(10,'header-menu','header-menu',0),(11,'phlox-pro','phlox-pro',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_ulike`
--

DROP TABLE IF EXISTS `wp_ulike`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ulike` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) NOT NULL,
  `date_time` datetime NOT NULL,
  `ip` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(30) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `post_id` (`post_id`),
  KEY `date_time` (`date_time`),
  KEY `user_id` (`user_id`),
  KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ulike`
--

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

--
-- Table structure for table `wp_ulike_activities`
--

DROP TABLE IF EXISTS `wp_ulike_activities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ulike_activities` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `activity_id` bigint(20) NOT NULL,
  `date_time` datetime NOT NULL,
  `ip` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(30) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `activity_id` (`activity_id`),
  KEY `date_time` (`date_time`),
  KEY `user_id` (`user_id`),
  KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ulike_activities`
--

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

--
-- Table structure for table `wp_ulike_comments`
--

DROP TABLE IF EXISTS `wp_ulike_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ulike_comments` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) NOT NULL,
  `date_time` datetime NOT NULL,
  `ip` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(30) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `comment_id` (`comment_id`),
  KEY `date_time` (`date_time`),
  KEY `user_id` (`user_id`),
  KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ulike_comments`
--

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

--
-- Table structure for table `wp_ulike_forums`
--

DROP TABLE IF EXISTS `wp_ulike_forums`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ulike_forums` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `topic_id` bigint(20) NOT NULL,
  `date_time` datetime NOT NULL,
  `ip` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(30) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `topic_id` (`topic_id`),
  KEY `date_time` (`date_time`),
  KEY `user_id` (`user_id`),
  KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ulike_forums`
--

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

--
-- Table structure for table `wp_ulike_meta`
--

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

--
-- Dumping data for table `wp_ulike_meta`
--

LOCK TABLES `wp_ulike_meta` WRITE;
/*!40000 ALTER TABLE `wp_ulike_meta` DISABLE KEYS */;
INSERT INTO `wp_ulike_meta` VALUES (1,1,'statistics','calculate_new_votes','0'),(2,1,'statistics','count_logs_period_all','0'),(3,56,'post','count_distinct_like','0'),(4,57,'post','count_distinct_like','0'),(5,58,'post','count_distinct_like','0'),(6,59,'post','count_distinct_like','0'),(7,60,'post','count_distinct_like','0'),(8,61,'post','count_distinct_like','0'),(9,62,'post','count_distinct_like','0'),(10,63,'post','count_distinct_like','0'),(11,65,'post','count_distinct_like','0'),(12,66,'post','count_distinct_like','0'),(13,67,'post','count_distinct_like','0'),(14,68,'post','count_distinct_like','0');
/*!40000 ALTER TABLE `wp_ulike_meta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','naish-admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"8641c86677d19788b0c4e7467ed5d4ca4da43a754a056795a60ee23f81f8e24d\";a:4:{s:10:\"expiration\";i:1648016621;s:2:\"ip\";s:39:\"2409:4073:4d90:2814:e492:7173:543b:e3bf\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36\";s:5:\"login\";i:1647843821;}}'),(17,1,'wp_user-settings','editor=html&libraryContent=browse'),(18,1,'wp_user-settings-time','1647576369'),(19,1,'wp_dashboard_quick_press_last_post_id','433'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:21:\"2409:4073:4d90:2814::\";}'),(21,1,'element-pack-notice-id-license-issue','1'),(22,1,'nav_menu_recently_edited','10'),(23,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(24,1,'metaboxhidden_nav-menus','a:10:{i:0;s:19:\"aux_archive_menubox\";i:1;s:28:\"add-post-type-e-landing-page\";i:2;s:17:\"add-post-type-faq\";i:3;s:23:\"add-post-type-portfolio\";i:4;s:12:\"add-post_tag\";i:5;s:15:\"add-post_format\";i:6;s:16:\"add-faq-category\";i:7;s:17:\"add-portfolio-cat\";i:8;s:17:\"add-portfolio-tag\";i:9;s:20:\"add-portfolio-filter\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'naish-admin','$P$BvGFjQw4phUgOdSC4zLoYiXMzspqsc1','naish-admin','sonus90@outlook.com','http://demoweblinks.in/naishautomation','2022-03-11 10:31:39','',0,'naish-admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!50112 SET @disable_bulk_load = IF (@is_rocksdb_supported, 'SET SESSION rocksdb_bulk_load = @old_rocksdb_bulk_load', 'SET @dummy_rocksdb_bulk_load = 0') */;
/*!50112 PREPARE s FROM @disable_bulk_load */;
/*!50112 EXECUTE s */;
/*!50112 DEALLOCATE PREPARE s */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2022-05-20  7:55:22
